diff --git a/corpus/declarations.txt b/corpus/declarations.txt index dbe4882..cbc25a0 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -362,3 +362,41 @@ int main() { (compound_statement (declaration (primitive_type) (array_declarator (identifier) (identifier))) (declaration (primitive_type) (array_declarator (identifier)))))) + +================================ +Attributes +================================ + +extern __attribute__((visibility("hidden"))) int foo(); +extern int bar() __attribute__((const)); +void die(const char *format, ...) __attribute__((noreturn)) + __attribute__((format(printf,1,2))); +extern __attribute__((visibility("default"), weak)) int print_status(); + +--- + +(translation_unit + (declaration + (storage_class_specifier) + (attribute_specifier + (argument_list + (call_expression + (identifier) (argument_list (string_literal))))) + (primitive_type) + (function_declarator (identifier) (parameter_list))) + (declaration + (storage_class_specifier) + (primitive_type) + (function_declarator (identifier) (parameter_list) (attribute_specifier (argument_list (identifier))))) + (declaration + (primitive_type) + (function_declarator (identifier) + (parameter_list (parameter_declaration (type_qualifier) (primitive_type) (pointer_declarator (identifier)))) + (attribute_specifier (argument_list (identifier))) + (attribute_specifier + (argument_list (call_expression (identifier) (argument_list (identifier) (number_literal) (number_literal))))))) + (declaration + (storage_class_specifier) + (attribute_specifier + (argument_list (call_expression (identifier) (argument_list (string_literal))) (identifier))) + (primitive_type) (function_declarator (identifier) (parameter_list)))) diff --git a/grammar.js b/grammar.js index fe8ae61..78e910a 100644 --- a/grammar.js +++ b/grammar.js @@ -132,12 +132,14 @@ module.exports = grammar({ _declaration_specifiers: $ => seq( repeat(choice( $.storage_class_specifier, - $.type_qualifier + $.type_qualifier, + $.attribute_specifier )), $._type_specifier, repeat(choice( $.storage_class_specifier, - $.type_qualifier + $.type_qualifier, + $.attribute_specifier )) ), @@ -151,6 +153,15 @@ module.exports = grammar({ ) ), + attribute_specifier: $ => seq( + '__attribute__', + seq( + '(', + $.argument_list, + ')' + ) + ), + declaration_list: $ => seq( '{', repeat($._top_level_item), @@ -193,7 +204,7 @@ module.exports = grammar({ pointer_type_declarator: $ => prec.dynamic(1, prec.right(seq('*', repeat($.type_qualifier), $._type_declarator))), abstract_pointer_declarator: $ => prec.dynamic(1, prec.right(seq('*', repeat($.type_qualifier), optional($._abstract_declarator)))), - function_declarator: $ => prec(1, seq($._declarator, $.parameter_list)), + function_declarator: $ => prec(1, seq($._declarator, $.parameter_list, repeat($.attribute_specifier))), function_field_declarator: $ => prec(1, seq($._field_declarator, $.parameter_list)), function_type_declarator: $ => prec(1, seq($._type_declarator, $.parameter_list)), abstract_function_declarator: $ => prec(1, seq(optional($._abstract_declarator), $.parameter_list)), diff --git a/src/grammar.json b/src/grammar.json index 2c1ddb6..b8c3a73 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -820,6 +820,10 @@ { "type": "SYMBOL", "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" } ] } @@ -840,6 +844,10 @@ { "type": "SYMBOL", "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" } ] } @@ -876,6 +884,32 @@ } ] }, + "attribute_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__attribute__" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, "declaration_list": { "type": "SEQ", "members": [ @@ -1223,6 +1257,13 @@ { "type": "SYMBOL", "name": "parameter_list" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } } ] } diff --git a/src/parser.c b/src/parser.c index c098022..c3a9c78 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 1637 -#define SYMBOL_COUNT 215 +#define STATE_COUNT 1658 +#define SYMBOL_COUNT 218 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 102 +#define TOKEN_COUNT 103 #define EXTERNAL_TOKEN_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -33,204 +33,207 @@ enum { anon_sym_SEMI = 17, anon_sym_typedef = 18, anon_sym_extern = 19, - anon_sym_LBRACE = 20, - anon_sym_RBRACE = 21, - anon_sym_LPAREN2 = 22, - anon_sym_STAR = 23, - anon_sym_LBRACK = 24, - anon_sym_RBRACK = 25, - anon_sym_EQ = 26, - anon_sym_static = 27, - anon_sym_auto = 28, - anon_sym_register = 29, - anon_sym_inline = 30, - anon_sym_const = 31, - anon_sym_restrict = 32, - anon_sym_volatile = 33, - anon_sym__Atomic = 34, - anon_sym_signed = 35, - anon_sym_unsigned = 36, - anon_sym_long = 37, - anon_sym_short = 38, - sym_primitive_type = 39, - anon_sym_enum = 40, - anon_sym_struct = 41, - anon_sym_union = 42, - anon_sym_COLON = 43, - anon_sym_if = 44, - anon_sym_else = 45, - anon_sym_switch = 46, - anon_sym_case = 47, - anon_sym_default = 48, - anon_sym_while = 49, - anon_sym_do = 50, - anon_sym_for = 51, - anon_sym_return = 52, - anon_sym_break = 53, - anon_sym_continue = 54, - anon_sym_goto = 55, - anon_sym_QMARK = 56, - anon_sym_STAR_EQ = 57, - anon_sym_SLASH_EQ = 58, - anon_sym_PERCENT_EQ = 59, - anon_sym_PLUS_EQ = 60, - anon_sym_DASH_EQ = 61, - anon_sym_LT_LT_EQ = 62, - anon_sym_GT_GT_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_CARET_EQ = 65, - anon_sym_PIPE_EQ = 66, - anon_sym_AMP = 67, - anon_sym_PIPE_PIPE = 68, - anon_sym_AMP_AMP = 69, - anon_sym_BANG = 70, - anon_sym_PIPE = 71, - anon_sym_CARET = 72, - anon_sym_TILDE = 73, - anon_sym_EQ_EQ = 74, - anon_sym_BANG_EQ = 75, - anon_sym_LT = 76, - anon_sym_GT = 77, - anon_sym_LT_EQ = 78, - anon_sym_GT_EQ = 79, - anon_sym_LT_LT = 80, - anon_sym_GT_GT = 81, - anon_sym_PLUS = 82, - anon_sym_DASH = 83, - anon_sym_SLASH = 84, - anon_sym_PERCENT = 85, - anon_sym_DASH_DASH = 86, - anon_sym_PLUS_PLUS = 87, - anon_sym_sizeof = 88, - anon_sym_DOT = 89, - anon_sym_DASH_GT = 90, - sym_number_literal = 91, - anon_sym_SQUOTE = 92, - aux_sym_char_literal_token1 = 93, - anon_sym_DQUOTE = 94, - aux_sym_string_literal_token1 = 95, - sym_escape_sequence = 96, - sym_system_lib_string = 97, - sym_true = 98, - sym_false = 99, - sym_null = 100, - sym_comment = 101, - sym_translation_unit = 102, - sym_preproc_include = 103, - sym_preproc_def = 104, - sym_preproc_function_def = 105, - sym_preproc_params = 106, - sym_preproc_call = 107, - sym_preproc_if = 108, - sym_preproc_ifdef = 109, - sym_preproc_else = 110, - sym_preproc_elif = 111, - sym_preproc_if_in_field_declaration_list = 112, - sym_preproc_ifdef_in_field_declaration_list = 113, - sym_preproc_else_in_field_declaration_list = 114, - sym_preproc_elif_in_field_declaration_list = 115, - sym_function_definition = 116, - sym_declaration = 117, - sym_type_definition = 118, - sym__declaration_specifiers = 119, - sym_linkage_specification = 120, - sym_declaration_list = 121, - sym__declarator = 122, - sym__field_declarator = 123, - sym__type_declarator = 124, - sym__abstract_declarator = 125, - sym_pointer_declarator = 126, - sym_pointer_field_declarator = 127, - sym_pointer_type_declarator = 128, - sym_abstract_pointer_declarator = 129, - sym_function_declarator = 130, - sym_function_field_declarator = 131, - sym_function_type_declarator = 132, - sym_abstract_function_declarator = 133, - sym_array_declarator = 134, - sym_array_field_declarator = 135, - sym_array_type_declarator = 136, - sym_abstract_array_declarator = 137, - sym_init_declarator = 138, - sym_compound_statement = 139, - sym_storage_class_specifier = 140, - sym_type_qualifier = 141, - sym__type_specifier = 142, - sym_sized_type_specifier = 143, - sym_enum_specifier = 144, - sym_enumerator_list = 145, - sym_struct_specifier = 146, - sym_union_specifier = 147, - sym_field_declaration_list = 148, - sym__field_declaration_list_item = 149, - sym_field_declaration = 150, - sym_bitfield_clause = 151, - sym_enumerator = 152, - sym_parameter_list = 153, - sym_parameter_declaration = 154, - sym_labeled_statement = 155, - sym_expression_statement = 156, - sym_if_statement = 157, - sym_switch_statement = 158, - sym_switch_body = 159, - sym_case_statement = 160, - sym_while_statement = 161, - sym_do_statement = 162, - sym_for_statement = 163, - sym_return_statement = 164, - sym_break_statement = 165, - sym_continue_statement = 166, - sym_goto_statement = 167, - sym__expression = 168, - sym_comma_expression = 169, - sym_conditional_expression = 170, - sym_assignment_expression = 171, - sym_pointer_expression = 172, - sym_logical_expression = 173, - sym_bitwise_expression = 174, - sym_equality_expression = 175, - sym_relational_expression = 176, - sym_shift_expression = 177, - sym_math_expression = 178, - sym_cast_expression = 179, - sym_type_descriptor = 180, - sym_sizeof_expression = 181, - sym_subscript_expression = 182, - sym_call_expression = 183, - sym_argument_list = 184, - sym_field_expression = 185, - sym_compound_literal_expression = 186, - sym_parenthesized_expression = 187, - sym_initializer_list = 188, - sym_initializer_pair = 189, - sym_subscript_designator = 190, - sym_field_designator = 191, - sym_char_literal = 192, - sym_concatenated_string = 193, - sym_string_literal = 194, - sym__empty_declaration = 195, - sym_macro_type_specifier = 196, - aux_sym_translation_unit_repeat1 = 197, - aux_sym_preproc_params_repeat1 = 198, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 199, - aux_sym_declaration_repeat1 = 200, - aux_sym_type_definition_repeat1 = 201, - aux_sym_type_definition_repeat2 = 202, - aux_sym__declaration_specifiers_repeat1 = 203, - aux_sym_sized_type_specifier_repeat1 = 204, - aux_sym_enumerator_list_repeat1 = 205, - aux_sym_field_declaration_repeat1 = 206, - aux_sym_parameter_list_repeat1 = 207, - aux_sym_switch_body_repeat1 = 208, - aux_sym_case_statement_repeat1 = 209, - aux_sym_for_statement_repeat1 = 210, - aux_sym_initializer_list_repeat1 = 211, - aux_sym_initializer_pair_repeat1 = 212, - aux_sym_concatenated_string_repeat1 = 213, - aux_sym_string_literal_repeat1 = 214, - alias_sym_statement_identifier = 215, - alias_sym_field_identifier = 216, - alias_sym_type_identifier = 217, + anon_sym___attribute__ = 20, + anon_sym_LPAREN2 = 21, + anon_sym_LBRACE = 22, + anon_sym_RBRACE = 23, + anon_sym_STAR = 24, + anon_sym_LBRACK = 25, + anon_sym_RBRACK = 26, + anon_sym_EQ = 27, + anon_sym_static = 28, + anon_sym_auto = 29, + anon_sym_register = 30, + anon_sym_inline = 31, + anon_sym_const = 32, + anon_sym_restrict = 33, + anon_sym_volatile = 34, + anon_sym__Atomic = 35, + anon_sym_signed = 36, + anon_sym_unsigned = 37, + anon_sym_long = 38, + anon_sym_short = 39, + sym_primitive_type = 40, + anon_sym_enum = 41, + anon_sym_struct = 42, + anon_sym_union = 43, + anon_sym_COLON = 44, + anon_sym_if = 45, + anon_sym_else = 46, + anon_sym_switch = 47, + anon_sym_case = 48, + anon_sym_default = 49, + anon_sym_while = 50, + anon_sym_do = 51, + anon_sym_for = 52, + anon_sym_return = 53, + anon_sym_break = 54, + anon_sym_continue = 55, + anon_sym_goto = 56, + anon_sym_QMARK = 57, + anon_sym_STAR_EQ = 58, + anon_sym_SLASH_EQ = 59, + anon_sym_PERCENT_EQ = 60, + anon_sym_PLUS_EQ = 61, + anon_sym_DASH_EQ = 62, + anon_sym_LT_LT_EQ = 63, + anon_sym_GT_GT_EQ = 64, + anon_sym_AMP_EQ = 65, + anon_sym_CARET_EQ = 66, + anon_sym_PIPE_EQ = 67, + anon_sym_AMP = 68, + anon_sym_PIPE_PIPE = 69, + anon_sym_AMP_AMP = 70, + anon_sym_BANG = 71, + anon_sym_PIPE = 72, + anon_sym_CARET = 73, + anon_sym_TILDE = 74, + anon_sym_EQ_EQ = 75, + anon_sym_BANG_EQ = 76, + anon_sym_LT = 77, + anon_sym_GT = 78, + anon_sym_LT_EQ = 79, + anon_sym_GT_EQ = 80, + anon_sym_LT_LT = 81, + anon_sym_GT_GT = 82, + anon_sym_PLUS = 83, + anon_sym_DASH = 84, + anon_sym_SLASH = 85, + anon_sym_PERCENT = 86, + anon_sym_DASH_DASH = 87, + anon_sym_PLUS_PLUS = 88, + anon_sym_sizeof = 89, + anon_sym_DOT = 90, + anon_sym_DASH_GT = 91, + sym_number_literal = 92, + anon_sym_SQUOTE = 93, + aux_sym_char_literal_token1 = 94, + anon_sym_DQUOTE = 95, + aux_sym_string_literal_token1 = 96, + sym_escape_sequence = 97, + sym_system_lib_string = 98, + sym_true = 99, + sym_false = 100, + sym_null = 101, + sym_comment = 102, + sym_translation_unit = 103, + sym_preproc_include = 104, + sym_preproc_def = 105, + sym_preproc_function_def = 106, + sym_preproc_params = 107, + sym_preproc_call = 108, + sym_preproc_if = 109, + sym_preproc_ifdef = 110, + sym_preproc_else = 111, + sym_preproc_elif = 112, + sym_preproc_if_in_field_declaration_list = 113, + sym_preproc_ifdef_in_field_declaration_list = 114, + sym_preproc_else_in_field_declaration_list = 115, + sym_preproc_elif_in_field_declaration_list = 116, + sym_function_definition = 117, + sym_declaration = 118, + sym_type_definition = 119, + sym__declaration_specifiers = 120, + sym_linkage_specification = 121, + sym_attribute_specifier = 122, + sym_declaration_list = 123, + sym__declarator = 124, + sym__field_declarator = 125, + sym__type_declarator = 126, + sym__abstract_declarator = 127, + sym_pointer_declarator = 128, + sym_pointer_field_declarator = 129, + sym_pointer_type_declarator = 130, + sym_abstract_pointer_declarator = 131, + sym_function_declarator = 132, + sym_function_field_declarator = 133, + sym_function_type_declarator = 134, + sym_abstract_function_declarator = 135, + sym_array_declarator = 136, + sym_array_field_declarator = 137, + sym_array_type_declarator = 138, + sym_abstract_array_declarator = 139, + sym_init_declarator = 140, + sym_compound_statement = 141, + sym_storage_class_specifier = 142, + sym_type_qualifier = 143, + sym__type_specifier = 144, + sym_sized_type_specifier = 145, + sym_enum_specifier = 146, + sym_enumerator_list = 147, + sym_struct_specifier = 148, + sym_union_specifier = 149, + sym_field_declaration_list = 150, + sym__field_declaration_list_item = 151, + sym_field_declaration = 152, + sym_bitfield_clause = 153, + sym_enumerator = 154, + sym_parameter_list = 155, + sym_parameter_declaration = 156, + sym_labeled_statement = 157, + sym_expression_statement = 158, + sym_if_statement = 159, + sym_switch_statement = 160, + sym_switch_body = 161, + sym_case_statement = 162, + sym_while_statement = 163, + sym_do_statement = 164, + sym_for_statement = 165, + sym_return_statement = 166, + sym_break_statement = 167, + sym_continue_statement = 168, + sym_goto_statement = 169, + sym__expression = 170, + sym_comma_expression = 171, + sym_conditional_expression = 172, + sym_assignment_expression = 173, + sym_pointer_expression = 174, + sym_logical_expression = 175, + sym_bitwise_expression = 176, + sym_equality_expression = 177, + sym_relational_expression = 178, + sym_shift_expression = 179, + sym_math_expression = 180, + sym_cast_expression = 181, + sym_type_descriptor = 182, + sym_sizeof_expression = 183, + sym_subscript_expression = 184, + sym_call_expression = 185, + sym_argument_list = 186, + sym_field_expression = 187, + sym_compound_literal_expression = 188, + sym_parenthesized_expression = 189, + sym_initializer_list = 190, + sym_initializer_pair = 191, + sym_subscript_designator = 192, + sym_field_designator = 193, + sym_char_literal = 194, + sym_concatenated_string = 195, + sym_string_literal = 196, + sym__empty_declaration = 197, + sym_macro_type_specifier = 198, + aux_sym_translation_unit_repeat1 = 199, + aux_sym_preproc_params_repeat1 = 200, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 201, + aux_sym_declaration_repeat1 = 202, + aux_sym_type_definition_repeat1 = 203, + aux_sym_type_definition_repeat2 = 204, + aux_sym__declaration_specifiers_repeat1 = 205, + aux_sym_function_declarator_repeat1 = 206, + aux_sym_sized_type_specifier_repeat1 = 207, + aux_sym_enumerator_list_repeat1 = 208, + aux_sym_field_declaration_repeat1 = 209, + aux_sym_parameter_list_repeat1 = 210, + aux_sym_switch_body_repeat1 = 211, + aux_sym_case_statement_repeat1 = 212, + aux_sym_for_statement_repeat1 = 213, + aux_sym_initializer_list_repeat1 = 214, + aux_sym_initializer_pair_repeat1 = 215, + aux_sym_concatenated_string_repeat1 = 216, + aux_sym_string_literal_repeat1 = 217, + alias_sym_statement_identifier = 218, + alias_sym_field_identifier = 219, + alias_sym_type_identifier = 220, }; static const char *ts_symbol_names[] = { @@ -254,9 +257,10 @@ static const char *ts_symbol_names[] = { [anon_sym_SEMI] = ";", [anon_sym_typedef] = "typedef", [anon_sym_extern] = "extern", + [anon_sym___attribute__] = "__attribute__", + [anon_sym_LPAREN2] = "(", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", - [anon_sym_LPAREN2] = "(", [anon_sym_STAR] = "*", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", @@ -355,6 +359,7 @@ static const char *ts_symbol_names[] = { [sym_type_definition] = "type_definition", [sym__declaration_specifiers] = "_declaration_specifiers", [sym_linkage_specification] = "linkage_specification", + [sym_attribute_specifier] = "attribute_specifier", [sym_declaration_list] = "declaration_list", [sym__declarator] = "_declarator", [sym__field_declarator] = "_field_declarator", @@ -438,6 +443,7 @@ static const char *ts_symbol_names[] = { [aux_sym_type_definition_repeat1] = "type_definition_repeat1", [aux_sym_type_definition_repeat2] = "type_definition_repeat2", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", + [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", @@ -535,15 +541,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE] = { + [anon_sym___attribute__] = { .visible = true, .named = false, }, - [anon_sym_RBRACE] = { + [anon_sym_LPAREN2] = { .visible = true, .named = false, }, - [anon_sym_LPAREN2] = { + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { .visible = true, .named = false, }, @@ -939,6 +949,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute_specifier] = { + .visible = true, + .named = true, + }, [sym_declaration_list] = { .visible = true, .named = true, @@ -1271,6 +1285,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, @@ -1337,10 +1355,10 @@ static TSSymbol ts_alias_sequences[8][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = alias_sym_type_identifier, }, [3] = { - [0] = alias_sym_statement_identifier, + [1] = alias_sym_statement_identifier, }, [4] = { - [1] = alias_sym_statement_identifier, + [0] = alias_sym_statement_identifier, }, [5] = { [2] = alias_sym_field_identifier, @@ -3354,82 +3372,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(52); END_STATE(); case 162: - if (lookahead == '!') - ADVANCE(163); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '%') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(6); - if (lookahead == '(') - ADVANCE(73); - if (lookahead == '*') - ADVANCE(10); - if (lookahead == '+') - ADVANCE(164); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(165); - if (lookahead == '.') - ADVANCE(166); - if (lookahead == '/') - ADVANCE(15); - if (lookahead == ':') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(19); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(21); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(23); - if (lookahead == '^') - ADVANCE(26); - if (lookahead == '{') - ADVANCE(27); - if (lookahead == '|') - ADVANCE(28); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(162); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(33); - END_STATE(); - case 163: - if (lookahead == '=') - ADVANCE(34); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(43); - if (lookahead == '=') - ADVANCE(45); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') - ADVANCE(46); - if (lookahead == '=') - ADVANCE(47); - if (lookahead == '>') - ADVANCE(48); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 167: if (lookahead == '!') ADVANCE(155); if (lookahead == '"') @@ -3451,7 +3393,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(160); if (lookahead == '.') - ADVANCE(168); + ADVANCE(163); if (lookahead == '/') ADVANCE(161); if (lookahead == '0') @@ -3460,6 +3402,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(17); if (lookahead == ';') ADVANCE(18); + if (lookahead == '=') + ADVANCE(164); if (lookahead == '[') ADVANCE(23); if (lookahead == ']') @@ -3472,7 +3416,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(167); + SKIP(162); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3480,239 +3424,377 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 168: + case 163: ACCEPT_TOKEN(anon_sym_DOT); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); - case 169: + case 164: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 165: if (lookahead == '\n') - ADVANCE(170); + SKIP(166); + if (lookahead == '"') + ADVANCE(3); if (lookahead == '/') - ADVANCE(171); + ADVANCE(167); if (lookahead == '\\') - ADVANCE(172); + ADVANCE(24); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(173); + ADVANCE(168); if (lookahead != 0) - ADVANCE(174); + ADVANCE(169); END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') + case 166: + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '/') + ADVANCE(161); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') + ADVANCE(169); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(169); + END_STATE(); + case 168: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') + ADVANCE(167); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(173); + ADVANCE(168); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(169); + END_STATE(); + case 169: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(169); + END_STATE(); + case 170: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') + ADVANCE(171); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(170); END_STATE(); case 171: - ACCEPT_TOKEN(sym_preproc_arg); + ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead == '*') - ADVANCE(175); + ADVANCE(171); if (lookahead == '/') - ADVANCE(176); - if (lookahead == '\\') ADVANCE(172); if (lookahead != 0 && - lookahead != '\n') - ADVANCE(174); + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(170); END_STATE(); case 172: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') - ADVANCE(174); - if (lookahead == '\r') - ADVANCE(177); - if (lookahead == '\\') - ADVANCE(172); - if (lookahead != 0) - ADVANCE(174); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(169); END_STATE(); case 173: - ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(170); + ADVANCE(174); if (lookahead == '/') - ADVANCE(171); + ADVANCE(175); if (lookahead == '\\') - ADVANCE(172); + ADVANCE(176); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(173); + ADVANCE(177); if (lookahead != 0) - ADVANCE(174); + ADVANCE(178); END_STATE(); case 174: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') - ADVANCE(172); - if (lookahead != 0 && - lookahead != '\n') + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(174); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(177); END_STATE(); case 175: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') - ADVANCE(51); if (lookahead == '*') - ADVANCE(178); - if (lookahead == '\\') ADVANCE(179); - if (lookahead != 0) - ADVANCE(175); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') + if (lookahead == '/') ADVANCE(180); + if (lookahead == '\\') + ADVANCE(176); if (lookahead != 0 && lookahead != '\n') + ADVANCE(178); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') + ADVANCE(178); + if (lookahead == '\r') + ADVANCE(181); + if (lookahead == '\\') ADVANCE(176); + if (lookahead != 0) + ADVANCE(178); END_STATE(); case 177: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(174); + if (lookahead == '/') + ADVANCE(175); if (lookahead == '\\') - ADVANCE(172); + ADVANCE(176); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(177); if (lookahead != 0) - ADVANCE(174); + ADVANCE(178); END_STATE(); case 178: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') + ADVANCE(176); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(178); + END_STATE(); + case 179: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(51); if (lookahead == '*') + ADVANCE(182); + if (lookahead == '\\') + ADVANCE(183); + if (lookahead != 0) + ADVANCE(179); + END_STATE(); + case 180: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') + ADVANCE(184); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(180); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') + ADVANCE(178); + if (lookahead == '\\') + ADVANCE(176); + if (lookahead != 0) ADVANCE(178); + END_STATE(); + case 182: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') + ADVANCE(51); + if (lookahead == '*') + ADVANCE(182); if (lookahead == '/') ADVANCE(104); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(185); if (lookahead != 0) - ADVANCE(182); + ADVANCE(186); END_STATE(); - case 179: + case 183: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(175); + ADVANCE(179); if (lookahead == '\r') - ADVANCE(183); + ADVANCE(187); if (lookahead == '*') - ADVANCE(178); + ADVANCE(182); if (lookahead == '\\') - ADVANCE(179); + ADVANCE(183); if (lookahead != 0) - ADVANCE(175); + ADVANCE(179); END_STATE(); - case 180: + case 184: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(176); + ADVANCE(180); if (lookahead == '\r') - ADVANCE(184); + ADVANCE(188); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(189); if (lookahead != 0) - ADVANCE(176); + ADVANCE(180); END_STATE(); - case 181: + case 185: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(182); - if (lookahead == '\r') ADVANCE(186); + if (lookahead == '\r') + ADVANCE(190); if (lookahead == '*') - ADVANCE(178); + ADVANCE(182); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(185); if (lookahead != 0) - ADVANCE(182); + ADVANCE(186); END_STATE(); - case 182: + case 186: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(51); if (lookahead == '*') - ADVANCE(178); + ADVANCE(182); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(185); if (lookahead != 0) - ADVANCE(182); + ADVANCE(186); END_STATE(); - case 183: + case 187: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(175); + ADVANCE(179); if (lookahead == '*') - ADVANCE(178); + ADVANCE(182); if (lookahead == '\\') - ADVANCE(179); + ADVANCE(183); if (lookahead != 0) - ADVANCE(175); + ADVANCE(179); END_STATE(); - case 184: + case 188: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(180); + ADVANCE(184); if (lookahead != 0 && lookahead != '\n') - ADVANCE(176); + ADVANCE(180); END_STATE(); - case 185: + case 189: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r') - ADVANCE(184); + ADVANCE(188); if (lookahead == '\\') - ADVANCE(180); + ADVANCE(184); if (lookahead != 0 && lookahead != '\n') - ADVANCE(176); + ADVANCE(180); END_STATE(); - case 186: + case 190: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(182); + ADVANCE(186); if (lookahead == '*') - ADVANCE(178); + ADVANCE(182); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(185); if (lookahead != 0) - ADVANCE(182); + ADVANCE(186); END_STATE(); - case 187: + case 191: if (lookahead == '\n') - SKIP(187); + SKIP(191); if (lookahead == '/') - ADVANCE(171); + ADVANCE(175); if (lookahead == '\\') - ADVANCE(172); + ADVANCE(176); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(188); + ADVANCE(192); if (lookahead != 0) - ADVANCE(174); + ADVANCE(178); END_STATE(); - case 188: + case 192: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - SKIP(187); + SKIP(191); if (lookahead == '/') - ADVANCE(171); + ADVANCE(175); if (lookahead == '\\') - ADVANCE(172); + ADVANCE(176); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(188); + ADVANCE(192); if (lookahead != 0) - ADVANCE(174); + ADVANCE(178); END_STATE(); - case 189: + case 193: + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '/') + ADVANCE(161); + if (lookahead == '<') + ADVANCE(194); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(193); + END_STATE(); + case 194: + if (lookahead == '>') + ADVANCE(195); + if (lookahead == '\\') + ADVANCE(196); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(194); + END_STATE(); + case 195: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 196: + if (lookahead == '>') + ADVANCE(197); + if (lookahead == '\\') + ADVANCE(196); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(194); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') + ADVANCE(195); + if (lookahead == '\\') + ADVANCE(196); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(194); + END_STATE(); + case 198: if (lookahead == '(') ADVANCE(73); if (lookahead == ')') @@ -3728,7 +3810,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(18); if (lookahead == '=') - ADVANCE(190); + ADVANCE(164); if (lookahead == '[') ADVANCE(23); if (lookahead == '{') @@ -3737,91 +3819,120 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(189); + SKIP(198); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 191: + case 199: + if (lookahead == '!') + ADVANCE(200); if (lookahead == '"') ADVANCE(3); + if (lookahead == '%') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(6); + if (lookahead == '(') + ADVANCE(73); + if (lookahead == '*') + ADVANCE(10); + if (lookahead == '+') + ADVANCE(201); + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') + ADVANCE(202); + if (lookahead == '.') + ADVANCE(203); if (lookahead == '/') - ADVANCE(161); + ADVANCE(15); + if (lookahead == ':') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(18); if (lookahead == '<') - ADVANCE(192); + ADVANCE(19); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(21); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(23); + if (lookahead == '^') + ADVANCE(26); + if (lookahead == '{') + ADVANCE(27); + if (lookahead == '|') + ADVANCE(28); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(191); + SKIP(199); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); END_STATE(); - case 192: - if (lookahead == '>') - ADVANCE(193); - if (lookahead == '\\') - ADVANCE(194); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(192); + case 200: + if (lookahead == '=') + ADVANCE(34); END_STATE(); - case 193: - ACCEPT_TOKEN(sym_system_lib_string); + case 201: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(43); + if (lookahead == '=') + ADVANCE(45); END_STATE(); - case 194: - if (lookahead == '>') - ADVANCE(195); - if (lookahead == '\\') - ADVANCE(194); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(192); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_system_lib_string); + case 202: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(46); + if (lookahead == '=') + ADVANCE(47); if (lookahead == '>') - ADVANCE(193); - if (lookahead == '\\') - ADVANCE(194); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(192); + ADVANCE(48); END_STATE(); - case 196: + case 203: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 204: if (lookahead == '\n') - SKIP(197); + SKIP(205); if (lookahead == '/') - ADVANCE(198); + ADVANCE(206); if (lookahead == '\\') - ADVANCE(199); + ADVANCE(207); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(200); + ADVANCE(208); if (lookahead != 0 && lookahead != '\'') - ADVANCE(200); + ADVANCE(208); END_STATE(); - case 197: + case 205: if (lookahead == '/') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(197); + SKIP(205); END_STATE(); - case 198: + case 206: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '*') ADVANCE(51); if (lookahead == '/') ADVANCE(52); END_STATE(); - case 199: + case 207: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == 'U') ADVANCE(65); @@ -3834,103 +3945,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(69); END_STATE(); - case 200: + case 208: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 201: - if (lookahead == '\n') - SKIP(202); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '/') - ADVANCE(203); - if (lookahead == '\\') - ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(204); - if (lookahead != 0) - ADVANCE(205); - END_STATE(); - case 202: - if (lookahead == '"') - ADVANCE(3); + case 209: + if (lookahead == '#') + ADVANCE(210); if (lookahead == '/') ADVANCE(161); + if (lookahead == '}') + ADVANCE(29); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(202); - END_STATE(); - case 203: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') - ADVANCE(206); - if (lookahead == '/') - ADVANCE(205); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(205); + SKIP(209); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); END_STATE(); - case 204: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') - ADVANCE(203); + case 210: + if (lookahead == 'd') + ADVANCE(35); + if (lookahead == 'i') + ADVANCE(211); if (lookahead == '\t' || - lookahead == '\r' || lookahead == ' ') - ADVANCE(204); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(205); - END_STATE(); - case 205: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(205); - END_STATE(); - case 206: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') - ADVANCE(207); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(206); - END_STATE(); - case 207: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') - ADVANCE(207); - if (lookahead == '/') - ADVANCE(208); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(206); + ADVANCE(210); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(38); END_STATE(); - case 208: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(205); + case 211: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') + ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(38); END_STATE(); - case 209: + case 212: if (lookahead == '!') - ADVANCE(163); + ADVANCE(200); if (lookahead == '"') ADVANCE(3); if (lookahead == '%') @@ -3944,13 +4003,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(10); if (lookahead == '+') - ADVANCE(164); + ADVANCE(201); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(165); + ADVANCE(202); if (lookahead == '.') - ADVANCE(166); + ADVANCE(203); if (lookahead == '/') ADVANCE(15); if (lookahead == ':') @@ -3981,77 +4040,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(209); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(33); - END_STATE(); - case 210: - if (lookahead == '!') - ADVANCE(163); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '%') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(6); - if (lookahead == '(') - ADVANCE(73); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(10); - if (lookahead == '+') - ADVANCE(164); - if (lookahead == ',') - ADVANCE(12); - if (lookahead == '-') - ADVANCE(165); - if (lookahead == '.') - ADVANCE(166); - if (lookahead == '/') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(19); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(21); - if (lookahead == '?') - ADVANCE(22); - if (lookahead == '[') - ADVANCE(23); - if (lookahead == '^') - ADVANCE(26); - if (lookahead == '|') - ADVANCE(28); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(210); + SKIP(212); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 211: + case 213: if (lookahead == '\n') - ADVANCE(212); + ADVANCE(214); if (lookahead == '/') ADVANCE(161); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(211); + SKIP(213); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') - ADVANCE(212); + ADVANCE(214); END_STATE(); - case 213: + case 215: if (lookahead == '!') ADVANCE(155); if (lookahead == '"') @@ -4086,7 +4096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(213); + SKIP(215); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4094,140 +4104,109 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 214: + case 216: if (lookahead == '!') - ADVANCE(155); + ADVANCE(200); if (lookahead == '"') ADVANCE(3); + if (lookahead == '%') + ADVANCE(5); if (lookahead == '&') - ADVANCE(157); - if (lookahead == '\'') - ADVANCE(7); + ADVANCE(6); if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') + ADVANCE(9); if (lookahead == '*') - ADVANCE(158); + ADVANCE(10); if (lookahead == '+') - ADVANCE(159); + ADVANCE(201); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(160); + ADVANCE(202); if (lookahead == '.') - ADVANCE(168); + ADVANCE(203); if (lookahead == '/') - ADVANCE(161); - if (lookahead == '0') - ADVANCE(16); + ADVANCE(15); + if (lookahead == '<') + ADVANCE(19); if (lookahead == '=') - ADVANCE(190); + ADVANCE(20); + if (lookahead == '>') + ADVANCE(21); + if (lookahead == '?') + ADVANCE(22); if (lookahead == '[') ADVANCE(23); - if (lookahead == '{') - ADVANCE(27); - if (lookahead == '}') - ADVANCE(29); - if (lookahead == '~') - ADVANCE(30); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(214); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(32); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(33); - END_STATE(); - case 215: - if (lookahead == '#') - ADVANCE(216); - if (lookahead == '/') - ADVANCE(161); - if (lookahead == '}') - ADVANCE(29); + if (lookahead == '^') + ADVANCE(26); + if (lookahead == '|') + ADVANCE(28); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(215); + SKIP(216); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 216: - if (lookahead == 'd') - ADVANCE(35); - if (lookahead == 'i') - ADVANCE(217); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(216); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(38); - END_STATE(); case 217: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') - ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(38); - END_STATE(); - case 218: - if (lookahead == '\n') - ADVANCE(170); - if (lookahead == '(') - ADVANCE(8); - if (lookahead == '/') - ADVANCE(171); - if (lookahead == '\\') - ADVANCE(172); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(173); - if (lookahead != 0) - ADVANCE(174); - END_STATE(); - case 219: if (lookahead == '!') - ADVANCE(155); + ADVANCE(2); if (lookahead == '"') ADVANCE(3); + if (lookahead == '%') + ADVANCE(5); if (lookahead == '&') - ADVANCE(157); + ADVANCE(6); if (lookahead == '\'') ADVANCE(7); if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') - ADVANCE(9); if (lookahead == '*') - ADVANCE(158); + ADVANCE(10); if (lookahead == '+') - ADVANCE(159); + ADVANCE(11); + if (lookahead == ',') + ADVANCE(12); if (lookahead == '-') - ADVANCE(160); + ADVANCE(13); if (lookahead == '.') - ADVANCE(44); + ADVANCE(163); if (lookahead == '/') - ADVANCE(161); + ADVANCE(15); if (lookahead == '0') ADVANCE(16); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(19); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(21); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(23); + if (lookahead == '^') + ADVANCE(26); + if (lookahead == '{') + ADVANCE(27); + if (lookahead == '|') + ADVANCE(28); + if (lookahead == '}') + ADVANCE(29); if (lookahead == '~') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(219); + SKIP(217); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4235,34 +4214,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 220: + case 218: + if (lookahead == '\n') + ADVANCE(174); if (lookahead == '(') - ADVANCE(73); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(158); - if (lookahead == '.') - ADVANCE(221); + ADVANCE(8); if (lookahead == '/') - ADVANCE(161); - if (lookahead == '[') - ADVANCE(23); + ADVANCE(175); + if (lookahead == '\\') + ADVANCE(176); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(220); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(33); - END_STATE(); - case 221: - if (lookahead == '.') - ADVANCE(49); + ADVANCE(177); + if (lookahead != 0) + ADVANCE(178); END_STATE(); - case 222: + case 219: if (lookahead == '!') ADVANCE(155); if (lookahead == '"') @@ -4273,6 +4241,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(7); if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') + ADVANCE(9); if (lookahead == '*') ADVANCE(158); if (lookahead == '+') @@ -4285,15 +4255,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(161); if (lookahead == '0') ADVANCE(16); - if (lookahead == ']') - ADVANCE(25); if (lookahead == '~') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); + SKIP(219); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4301,13 +4269,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 223: + case 220: if (lookahead == '!') ADVANCE(155); if (lookahead == '"') ADVANCE(3); if (lookahead == '#') - ADVANCE(224); + ADVANCE(221); if (lookahead == '&') ADVANCE(157); if (lookahead == '\'') @@ -4336,7 +4304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(223); + SKIP(220); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4344,21 +4312,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 224: + case 221: if (lookahead == 'd') ADVANCE(35); if (lookahead == 'e') - ADVANCE(225); + ADVANCE(222); if (lookahead == 'i') ADVANCE(37); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(224); + ADVANCE(221); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); END_STATE(); - case 225: + case 222: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'n') ADVANCE(76); @@ -4368,42 +4336,108 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); END_STATE(); - case 226: + case 223: if (lookahead == '#') - ADVANCE(227); + ADVANCE(224); if (lookahead == '/') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(226); + SKIP(223); END_STATE(); - case 227: + case 224: if (lookahead == 'e') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == ' ') + ADVANCE(224); + END_STATE(); + case 225: + if (lookahead == 'n') + ADVANCE(226); + END_STATE(); + case 226: + if (lookahead == 'd') ADVANCE(227); END_STATE(); + case 227: + if (lookahead == 'i') + ADVANCE(228); + END_STATE(); case 228: - if (lookahead == 'n') + if (lookahead == 'f') ADVANCE(229); END_STATE(); case 229: - if (lookahead == 'd') - ADVANCE(230); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 230: - if (lookahead == 'i') + if (lookahead == '(') + ADVANCE(73); + if (lookahead == ')') + ADVANCE(9); + if (lookahead == '*') + ADVANCE(158); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') + ADVANCE(161); + if (lookahead == '[') + ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(230); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); END_STATE(); case 231: - if (lookahead == 'f') - ADVANCE(232); + if (lookahead == '.') + ADVANCE(49); END_STATE(); case 232: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (lookahead == '!') + ADVANCE(155); + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '&') + ADVANCE(157); + if (lookahead == '\'') + ADVANCE(7); + if (lookahead == '(') + ADVANCE(73); + if (lookahead == '*') + ADVANCE(158); + if (lookahead == '+') + ADVANCE(159); + if (lookahead == '-') + ADVANCE(160); + if (lookahead == '.') + ADVANCE(44); + if (lookahead == '/') + ADVANCE(161); + if (lookahead == '0') + ADVANCE(16); + if (lookahead == ']') + ADVANCE(25); + if (lookahead == '~') + ADVANCE(30); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(232); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(32); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); END_STATE(); case 233: if (lookahead == '(') @@ -4417,7 +4451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(18); if (lookahead == '=') - ADVANCE(190); + ADVANCE(164); if (lookahead == '[') ADVANCE(23); if (lookahead == '{') @@ -4430,7 +4464,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 234: if (lookahead == '!') - ADVANCE(163); + ADVANCE(200); if (lookahead == '"') ADVANCE(3); if (lookahead == '%') @@ -4442,11 +4476,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(10); if (lookahead == '+') - ADVANCE(164); + ADVANCE(201); if (lookahead == '-') - ADVANCE(165); + ADVANCE(202); if (lookahead == '.') - ADVANCE(166); + ADVANCE(203); if (lookahead == '/') ADVANCE(15); if (lookahead == '<') @@ -4472,59 +4506,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(234); END_STATE(); case 235: - if (lookahead == '!') - ADVANCE(2); + if (lookahead == '#') + ADVANCE(236); + if (lookahead == '/') + ADVANCE(161); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(235); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); + END_STATE(); + case 236: + if (lookahead == 'd') + ADVANCE(35); + if (lookahead == 'e') + ADVANCE(36); + if (lookahead == 'i') + ADVANCE(211); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(38); + END_STATE(); + case 237: + if (lookahead == '!') + ADVANCE(155); if (lookahead == '"') ADVANCE(3); - if (lookahead == '%') - ADVANCE(5); if (lookahead == '&') - ADVANCE(6); + ADVANCE(157); if (lookahead == '\'') ADVANCE(7); if (lookahead == '(') ADVANCE(73); if (lookahead == '*') - ADVANCE(10); + ADVANCE(158); if (lookahead == '+') - ADVANCE(11); + ADVANCE(159); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(13); + ADVANCE(160); if (lookahead == '.') - ADVANCE(168); + ADVANCE(163); if (lookahead == '/') - ADVANCE(15); + ADVANCE(161); if (lookahead == '0') ADVANCE(16); - if (lookahead == ':') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(19); - if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(21); - if (lookahead == '?') - ADVANCE(22); if (lookahead == '[') ADVANCE(23); - if (lookahead == '^') - ADVANCE(26); if (lookahead == '{') ADVANCE(27); - if (lookahead == '|') - ADVANCE(28); + if (lookahead == '}') + ADVANCE(29); if (lookahead == '~') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(235); + SKIP(237); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4532,36 +4579,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 236: + case 238: if (lookahead == '#') - ADVANCE(237); + ADVANCE(239); if (lookahead == '/') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(236); + SKIP(238); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 237: + case 239: if (lookahead == 'd') ADVANCE(35); if (lookahead == 'e') - ADVANCE(36); + ADVANCE(222); if (lookahead == 'i') - ADVANCE(217); + ADVANCE(211); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(237); + ADVANCE(239); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); END_STATE(); - case 238: + case 240: if (lookahead == '!') ADVANCE(2); if (lookahead == '"') @@ -4585,7 +4632,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(13); if (lookahead == '.') - ADVANCE(168); + ADVANCE(163); if (lookahead == '/') ADVANCE(15); if (lookahead == '0') @@ -4612,7 +4659,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(238); + SKIP(240); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4620,9 +4667,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 239: + case 241: if (lookahead == '!') - ADVANCE(163); + ADVANCE(200); if (lookahead == '"') ADVANCE(3); if (lookahead == '%') @@ -4634,13 +4681,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(10); if (lookahead == '+') - ADVANCE(164); + ADVANCE(201); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(165); + ADVANCE(202); if (lookahead == '.') - ADVANCE(166); + ADVANCE(203); if (lookahead == '/') ADVANCE(15); if (lookahead == '<') @@ -4663,36 +4710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(239); - END_STATE(); - case 240: - if (lookahead == '#') - ADVANCE(241); - if (lookahead == '/') - ADVANCE(161); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(240); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(33); - END_STATE(); - case 241: - if (lookahead == 'd') - ADVANCE(35); - if (lookahead == 'e') - ADVANCE(225); - if (lookahead == 'i') - ADVANCE(217); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(241); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(38); + SKIP(241); END_STATE(); case 242: if (lookahead == '!') @@ -4714,7 +4732,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(13); if (lookahead == '.') - ADVANCE(168); + ADVANCE(163); if (lookahead == '/') ADVANCE(15); if (lookahead == '0') @@ -4768,16 +4786,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(10); if (lookahead == '+') ADVANCE(11); - if (lookahead == ',') - ADVANCE(12); if (lookahead == '-') ADVANCE(13); if (lookahead == '.') - ADVANCE(168); + ADVANCE(163); if (lookahead == '/') ADVANCE(15); if (lookahead == '0') ADVANCE(16); + if (lookahead == ':') + ADVANCE(17); if (lookahead == '<') ADVANCE(19); if (lookahead == '=') @@ -4794,8 +4812,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(27); if (lookahead == '|') ADVANCE(28); - if (lookahead == '}') - ADVANCE(29); if (lookahead == '~') ADVANCE(30); if (lookahead == '\t' || @@ -4878,953 +4894,1002 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == 'A') ADVANCE(23); + if (lookahead == '_') + ADVANCE(24); END_STATE(); case 5: if (lookahead == 'u') - ADVANCE(24); + ADVANCE(25); END_STATE(); case 6: if (lookahead == 'o') - ADVANCE(25); - if (lookahead == 'r') ADVANCE(26); + if (lookahead == 'r') + ADVANCE(27); END_STATE(); case 7: if (lookahead == 'a') - ADVANCE(27); - if (lookahead == 'h') ADVANCE(28); - if (lookahead == 'o') + if (lookahead == 'h') ADVANCE(29); + if (lookahead == 'o') + ADVANCE(30); END_STATE(); case 8: if (lookahead == 'e') - ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'o') + ADVANCE(32); END_STATE(); case 9: if (lookahead == 'l') - ADVANCE(32); - if (lookahead == 'n') ADVANCE(33); - if (lookahead == 'x') + if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'x') + ADVANCE(35); END_STATE(); case 10: if (lookahead == 'a') - ADVANCE(35); - if (lookahead == 'l') ADVANCE(36); - if (lookahead == 'o') + if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'o') + ADVANCE(38); END_STATE(); case 11: if (lookahead == 'o') - ADVANCE(38); + ADVANCE(39); END_STATE(); case 12: if (lookahead == 'f') - ADVANCE(39); - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'n') + ADVANCE(41); END_STATE(); case 13: if (lookahead == 'o') - ADVANCE(41); + ADVANCE(42); END_STATE(); case 14: if (lookahead == 'e') - ADVANCE(42); + ADVANCE(43); END_STATE(); case 15: if (lookahead == 'h') - ADVANCE(43); - if (lookahead == 'i') ADVANCE(44); - if (lookahead == 's') + if (lookahead == 'i') ADVANCE(45); - if (lookahead == 't') + if (lookahead == 's') ADVANCE(46); - if (lookahead == 'w') + if (lookahead == 't') ADVANCE(47); + if (lookahead == 'w') + ADVANCE(48); END_STATE(); case 16: if (lookahead == 'r') - ADVANCE(48); - if (lookahead == 'y') ADVANCE(49); + if (lookahead == 'y') + ADVANCE(50); END_STATE(); case 17: if (lookahead == 'i') - ADVANCE(50); - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'n') + ADVANCE(52); END_STATE(); case 18: if (lookahead == 'o') - ADVANCE(52); + ADVANCE(53); END_STATE(); case 19: if (lookahead == 'h') - ADVANCE(53); + ADVANCE(54); END_STATE(); case 20: if (lookahead == 'L') - ADVANCE(54); + ADVANCE(55); END_STATE(); case 21: if (lookahead == 'L') - ADVANCE(55); + ADVANCE(56); END_STATE(); case 22: if (lookahead == 'U') - ADVANCE(56); - END_STATE(); - case 23: - if (lookahead == 't') ADVANCE(57); END_STATE(); - case 24: + case 23: if (lookahead == 't') ADVANCE(58); END_STATE(); - case 25: - if (lookahead == 'o') + case 24: + if (lookahead == 'a') ADVANCE(59); END_STATE(); - case 26: - if (lookahead == 'e') + case 25: + if (lookahead == 't') ADVANCE(60); END_STATE(); - case 27: - if (lookahead == 's') + case 26: + if (lookahead == 'o') ADVANCE(61); END_STATE(); - case 28: - if (lookahead == 'a') + case 27: + if (lookahead == 'e') ADVANCE(62); END_STATE(); - case 29: - if (lookahead == 'n') + case 28: + if (lookahead == 's') ADVANCE(63); END_STATE(); - case 30: - if (lookahead == 'f') + case 29: + if (lookahead == 'a') ADVANCE(64); END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') + case 30: + if (lookahead == 'n') ADVANCE(65); END_STATE(); - case 32: - if (lookahead == 's') + case 31: + if (lookahead == 'f') ADVANCE(66); END_STATE(); - case 33: + case 32: + ACCEPT_TOKEN(anon_sym_do); if (lookahead == 'u') ADVANCE(67); END_STATE(); - case 34: - if (lookahead == 't') + case 33: + if (lookahead == 's') ADVANCE(68); END_STATE(); - case 35: - if (lookahead == 'l') + case 34: + if (lookahead == 'u') ADVANCE(69); END_STATE(); - case 36: - if (lookahead == 'o') + case 35: + if (lookahead == 't') ADVANCE(70); END_STATE(); - case 37: - if (lookahead == 'r') + case 36: + if (lookahead == 'l') ADVANCE(71); END_STATE(); - case 38: - if (lookahead == 't') + case 37: + if (lookahead == 'o') ADVANCE(72); END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 40: - if (lookahead == 'l') + case 38: + if (lookahead == 'r') ADVANCE(73); + END_STATE(); + case 39: if (lookahead == 't') ADVANCE(74); END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); case 41: - if (lookahead == 'n') + if (lookahead == 'l') ADVANCE(75); + if (lookahead == 't') + ADVANCE(76); END_STATE(); case 42: - if (lookahead == 'g') - ADVANCE(76); - if (lookahead == 's') + if (lookahead == 'n') ADVANCE(77); - if (lookahead == 't') - ADVANCE(78); END_STATE(); case 43: - if (lookahead == 'o') + if (lookahead == 'g') + ADVANCE(78); + if (lookahead == 's') ADVANCE(79); + if (lookahead == 't') + ADVANCE(80); END_STATE(); case 44: - if (lookahead == 'g') - ADVANCE(80); - if (lookahead == 'z') + if (lookahead == 'o') ADVANCE(81); END_STATE(); case 45: - if (lookahead == 'i') + if (lookahead == 'g') ADVANCE(82); + if (lookahead == 'z') + ADVANCE(83); END_STATE(); case 46: - if (lookahead == 'a') - ADVANCE(83); - if (lookahead == 'r') + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 47: - if (lookahead == 'i') + if (lookahead == 'a') ADVANCE(85); + if (lookahead == 'r') + ADVANCE(86); END_STATE(); case 48: - if (lookahead == 'u') - ADVANCE(86); + if (lookahead == 'i') + ADVANCE(87); END_STATE(); case 49: - if (lookahead == 'p') - ADVANCE(87); + if (lookahead == 'u') + ADVANCE(88); END_STATE(); case 50: - if (lookahead == 'n') - ADVANCE(88); + if (lookahead == 'p') + ADVANCE(89); END_STATE(); case 51: - if (lookahead == 'i') - ADVANCE(89); - if (lookahead == 's') + if (lookahead == 'n') ADVANCE(90); END_STATE(); case 52: if (lookahead == 'i') ADVANCE(91); - if (lookahead == 'l') + if (lookahead == 's') ADVANCE(92); END_STATE(); case 53: if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'l') + ADVANCE(94); END_STATE(); case 54: - if (lookahead == 'S') - ADVANCE(94); + if (lookahead == 'i') + ADVANCE(95); END_STATE(); case 55: - if (lookahead == 'L') - ADVANCE(95); + if (lookahead == 'S') + ADVANCE(96); END_STATE(); case 56: - if (lookahead == 'E') - ADVANCE(96); + if (lookahead == 'L') + ADVANCE(97); END_STATE(); case 57: - if (lookahead == 'o') - ADVANCE(97); + if (lookahead == 'E') + ADVANCE(98); END_STATE(); case 58: if (lookahead == 'o') - ADVANCE(98); + ADVANCE(99); END_STATE(); case 59: - if (lookahead == 'l') - ADVANCE(99); + if (lookahead == 't') + ADVANCE(100); END_STATE(); case 60: - if (lookahead == 'a') - ADVANCE(100); + if (lookahead == 'o') + ADVANCE(101); END_STATE(); case 61: - if (lookahead == 'e') - ADVANCE(101); + if (lookahead == 'l') + ADVANCE(102); END_STATE(); case 62: - if (lookahead == 'r') - ADVANCE(102); + if (lookahead == 'a') + ADVANCE(103); END_STATE(); case 63: - if (lookahead == 's') - ADVANCE(103); - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 64: - if (lookahead == 'a') + if (lookahead == 'r') ADVANCE(105); END_STATE(); case 65: - if (lookahead == 'b') + if (lookahead == 's') ADVANCE(106); + if (lookahead == 't') + ADVANCE(107); END_STATE(); case 66: - if (lookahead == 'e') - ADVANCE(107); + if (lookahead == 'a') + ADVANCE(108); END_STATE(); case 67: - if (lookahead == 'm') - ADVANCE(108); + if (lookahead == 'b') + ADVANCE(109); END_STATE(); case 68: if (lookahead == 'e') - ADVANCE(109); + ADVANCE(110); END_STATE(); case 69: - if (lookahead == 's') - ADVANCE(110); + if (lookahead == 'm') + ADVANCE(111); END_STATE(); case 70: - if (lookahead == 'a') - ADVANCE(111); + if (lookahead == 'e') + ADVANCE(112); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') + ADVANCE(113); END_STATE(); case 72: - if (lookahead == 'o') - ADVANCE(112); + if (lookahead == 'a') + ADVANCE(114); END_STATE(); case 73: - if (lookahead == 'i') - ADVANCE(113); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 74: + if (lookahead == 'o') + ADVANCE(115); + END_STATE(); + case 75: + if (lookahead == 'i') + ADVANCE(116); + END_STATE(); + case 76: ACCEPT_TOKEN(sym_primitive_type); if (lookahead == '1') - ADVANCE(114); + ADVANCE(117); if (lookahead == '3') - ADVANCE(115); + ADVANCE(118); if (lookahead == '6') - ADVANCE(116); + ADVANCE(119); if (lookahead == '8') - ADVANCE(117); + ADVANCE(120); if (lookahead == 'p') - ADVANCE(118); + ADVANCE(121); END_STATE(); - case 75: + case 77: if (lookahead == 'g') - ADVANCE(119); + ADVANCE(122); END_STATE(); - case 76: + case 78: if (lookahead == 'i') - ADVANCE(120); + ADVANCE(123); END_STATE(); - case 77: + case 79: if (lookahead == 't') - ADVANCE(121); + ADVANCE(124); END_STATE(); - case 78: + case 80: if (lookahead == 'u') - ADVANCE(122); + ADVANCE(125); END_STATE(); - case 79: + case 81: if (lookahead == 'r') - ADVANCE(123); + ADVANCE(126); END_STATE(); - case 80: + case 82: if (lookahead == 'n') - ADVANCE(124); + ADVANCE(127); END_STATE(); - case 81: + case 83: if (lookahead == 'e') - ADVANCE(125); + ADVANCE(128); END_STATE(); - case 82: + case 84: if (lookahead == 'z') - ADVANCE(126); + ADVANCE(129); END_STATE(); - case 83: + case 85: if (lookahead == 't') - ADVANCE(127); + ADVANCE(130); END_STATE(); - case 84: + case 86: if (lookahead == 'u') - ADVANCE(128); + ADVANCE(131); END_STATE(); - case 85: + case 87: if (lookahead == 't') - ADVANCE(129); + ADVANCE(132); END_STATE(); - case 86: + case 88: if (lookahead == 'e') - ADVANCE(96); + ADVANCE(98); END_STATE(); - case 87: + case 89: if (lookahead == 'e') - ADVANCE(130); + ADVANCE(133); END_STATE(); - case 88: + case 90: if (lookahead == 't') - ADVANCE(131); + ADVANCE(134); END_STATE(); - case 89: + case 91: if (lookahead == 'o') - ADVANCE(132); + ADVANCE(135); END_STATE(); - case 90: + case 92: if (lookahead == 'i') - ADVANCE(133); + ADVANCE(136); END_STATE(); - case 91: + case 93: if (lookahead == 'd') - ADVANCE(99); + ADVANCE(102); END_STATE(); - case 92: + case 94: if (lookahead == 'a') - ADVANCE(134); + ADVANCE(137); END_STATE(); - case 93: + case 95: if (lookahead == 'l') - ADVANCE(135); + ADVANCE(138); END_STATE(); - case 94: + case 96: if (lookahead == 'E') - ADVANCE(136); + ADVANCE(139); END_STATE(); - case 95: + case 97: ACCEPT_TOKEN(sym_null); END_STATE(); - case 96: + case 98: ACCEPT_TOKEN(sym_true); END_STATE(); - case 97: + case 99: if (lookahead == 'm') - ADVANCE(137); + ADVANCE(140); END_STATE(); - case 98: + case 100: + if (lookahead == 't') + ADVANCE(141); + END_STATE(); + case 101: ACCEPT_TOKEN(anon_sym_auto); END_STATE(); - case 99: + case 102: ACCEPT_TOKEN(sym_primitive_type); END_STATE(); - case 100: + case 103: if (lookahead == 'k') - ADVANCE(138); + ADVANCE(142); END_STATE(); - case 101: + case 104: ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 102: + case 105: ACCEPT_TOKEN(sym_primitive_type); if (lookahead == '1') - ADVANCE(139); - if (lookahead == '3') - ADVANCE(140); - if (lookahead == '6') - ADVANCE(141); - if (lookahead == '8') - ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - END_STATE(); - case 103: - if (lookahead == 't') + if (lookahead == '3') ADVANCE(144); - END_STATE(); - case 104: - if (lookahead == 'i') + if (lookahead == '6') ADVANCE(145); - END_STATE(); - case 105: - if (lookahead == 'u') + if (lookahead == '8') ADVANCE(146); + if (lookahead == 'p') + ADVANCE(147); END_STATE(); case 106: - if (lookahead == 'l') - ADVANCE(147); + if (lookahead == 't') + ADVANCE(148); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'i') + ADVANCE(149); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'u') + ADVANCE(150); END_STATE(); case 109: - if (lookahead == 'r') - ADVANCE(148); + if (lookahead == 'l') + ADVANCE(151); END_STATE(); case 110: - if (lookahead == 'e') - ADVANCE(136); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 111: - if (lookahead == 't') - ADVANCE(99); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'r') + ADVANCE(152); END_STATE(); case 113: - if (lookahead == 'n') - ADVANCE(149); + if (lookahead == 'e') + ADVANCE(139); END_STATE(); case 114: - if (lookahead == '6') - ADVANCE(150); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 115: - if (lookahead == '2') - ADVANCE(151); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 116: - if (lookahead == '4') - ADVANCE(152); + if (lookahead == 'n') + ADVANCE(153); END_STATE(); case 117: - if (lookahead == '_') - ADVANCE(153); + if (lookahead == '6') + ADVANCE(154); END_STATE(); case 118: - if (lookahead == 't') - ADVANCE(154); + if (lookahead == '2') + ADVANCE(155); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == '4') + ADVANCE(156); END_STATE(); case 120: - if (lookahead == 's') - ADVANCE(155); + if (lookahead == '_') + ADVANCE(157); END_STATE(); case 121: - if (lookahead == 'r') - ADVANCE(156); + if (lookahead == 't') + ADVANCE(158); END_STATE(); case 122: - if (lookahead == 'r') - ADVANCE(157); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 123: - if (lookahead == 't') - ADVANCE(158); + if (lookahead == 's') + ADVANCE(159); END_STATE(); case 124: - if (lookahead == 'e') - ADVANCE(159); + if (lookahead == 'r') + ADVANCE(160); END_STATE(); case 125: - if (lookahead == '_') - ADVANCE(160); - if (lookahead == 'o') + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 126: - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(162); END_STATE(); case 127: - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 128: - if (lookahead == 'c') + if (lookahead == '_') ADVANCE(164); + if (lookahead == 'o') + ADVANCE(165); END_STATE(); case 129: - if (lookahead == 'c') - ADVANCE(165); + if (lookahead == 'e') + ADVANCE(166); END_STATE(); case 130: - if (lookahead == 'd') - ADVANCE(166); + if (lookahead == 'i') + ADVANCE(167); END_STATE(); case 131: - if (lookahead == '1') - ADVANCE(167); - if (lookahead == '3') + if (lookahead == 'c') ADVANCE(168); - if (lookahead == '6') - ADVANCE(169); - if (lookahead == '8') - ADVANCE(170); - if (lookahead == 'p') - ADVANCE(171); END_STATE(); case 132: - if (lookahead == 'n') - ADVANCE(172); + if (lookahead == 'c') + ADVANCE(169); END_STATE(); case 133: - if (lookahead == 'g') - ADVANCE(173); + if (lookahead == 'd') + ADVANCE(170); END_STATE(); case 134: - if (lookahead == 't') + if (lookahead == '1') + ADVANCE(171); + if (lookahead == '3') + ADVANCE(172); + if (lookahead == '6') + ADVANCE(173); + if (lookahead == '8') ADVANCE(174); + if (lookahead == 'p') + ADVANCE(175); END_STATE(); case 135: - if (lookahead == 'e') - ADVANCE(175); + if (lookahead == 'n') + ADVANCE(176); END_STATE(); case 136: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'g') + ADVANCE(177); END_STATE(); case 137: - if (lookahead == 'i') - ADVANCE(176); + if (lookahead == 't') + ADVANCE(178); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'e') + ADVANCE(179); END_STATE(); case 139: - if (lookahead == '6') - ADVANCE(177); + ACCEPT_TOKEN(sym_false); END_STATE(); case 140: - if (lookahead == '2') - ADVANCE(178); + if (lookahead == 'i') + ADVANCE(180); END_STATE(); case 141: - if (lookahead == '4') - ADVANCE(179); + if (lookahead == 'r') + ADVANCE(181); END_STATE(); case 142: - if (lookahead == '_') - ADVANCE(180); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 143: - if (lookahead == 't') - ADVANCE(181); + if (lookahead == '6') + ADVANCE(182); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == '2') + ADVANCE(183); END_STATE(); case 145: - if (lookahead == 'n') - ADVANCE(182); + if (lookahead == '4') + ADVANCE(184); END_STATE(); case 146: - if (lookahead == 'l') - ADVANCE(183); + if (lookahead == '_') + ADVANCE(185); END_STATE(); case 147: - if (lookahead == 'e') - ADVANCE(99); + if (lookahead == 't') + ADVANCE(186); END_STATE(); case 148: - if (lookahead == 'n') - ADVANCE(184); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 149: - if (lookahead == 'e') - ADVANCE(185); + if (lookahead == 'n') + ADVANCE(187); END_STATE(); case 150: - if (lookahead == '_') - ADVANCE(186); + if (lookahead == 'l') + ADVANCE(188); END_STATE(); case 151: - if (lookahead == '_') - ADVANCE(187); + if (lookahead == 'e') + ADVANCE(102); END_STATE(); case 152: - if (lookahead == '_') - ADVANCE(188); + if (lookahead == 'n') + ADVANCE(189); END_STATE(); case 153: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'e') + ADVANCE(190); END_STATE(); case 154: - if (lookahead == 'r') - ADVANCE(189); + if (lookahead == '_') + ADVANCE(191); END_STATE(); case 155: - if (lookahead == 't') - ADVANCE(190); + if (lookahead == '_') + ADVANCE(192); END_STATE(); case 156: - if (lookahead == 'i') - ADVANCE(191); + if (lookahead == '_') + ADVANCE(193); END_STATE(); case 157: - if (lookahead == 'n') - ADVANCE(192); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'r') + ADVANCE(194); END_STATE(); case 159: - if (lookahead == 'd') - ADVANCE(193); + if (lookahead == 't') + ADVANCE(195); END_STATE(); case 160: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'i') + ADVANCE(196); END_STATE(); case 161: - if (lookahead == 'f') - ADVANCE(194); + if (lookahead == 'n') + ADVANCE(197); END_STATE(); case 162: - if (lookahead == '_') - ADVANCE(195); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 163: - if (lookahead == 'c') - ADVANCE(196); + if (lookahead == 'd') + ADVANCE(198); END_STATE(); case 164: if (lookahead == 't') - ADVANCE(197); + ADVANCE(102); END_STATE(); case 165: - if (lookahead == 'h') - ADVANCE(198); - END_STATE(); - case 166: - if (lookahead == 'e') + if (lookahead == 'f') ADVANCE(199); END_STATE(); - case 167: - if (lookahead == '6') + case 166: + if (lookahead == '_') ADVANCE(200); END_STATE(); - case 168: - if (lookahead == '2') + case 167: + if (lookahead == 'c') ADVANCE(201); END_STATE(); - case 169: - if (lookahead == '4') + case 168: + if (lookahead == 't') ADVANCE(202); END_STATE(); - case 170: - if (lookahead == '_') + case 169: + if (lookahead == 'h') ADVANCE(203); END_STATE(); - case 171: - if (lookahead == 't') + case 170: + if (lookahead == 'e') ADVANCE(204); END_STATE(); + case 171: + if (lookahead == '6') + ADVANCE(205); + END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == '2') + ADVANCE(206); END_STATE(); case 173: - if (lookahead == 'n') - ADVANCE(205); + if (lookahead == '4') + ADVANCE(207); END_STATE(); case 174: - if (lookahead == 'i') - ADVANCE(206); + if (lookahead == '_') + ADVANCE(208); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') + ADVANCE(209); END_STATE(); case 176: - if (lookahead == 'c') - ADVANCE(207); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 177: - if (lookahead == '_') - ADVANCE(208); + if (lookahead == 'n') + ADVANCE(210); END_STATE(); case 178: - if (lookahead == '_') - ADVANCE(209); + if (lookahead == 'i') + ADVANCE(211); END_STATE(); case 179: - if (lookahead == '_') - ADVANCE(210); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 180: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'c') + ADVANCE(212); END_STATE(); case 181: - if (lookahead == 'r') - ADVANCE(211); + if (lookahead == 'i') + ADVANCE(213); END_STATE(); case 182: - if (lookahead == 'u') - ADVANCE(212); + if (lookahead == '_') + ADVANCE(214); END_STATE(); case 183: - if (lookahead == 't') - ADVANCE(213); + if (lookahead == '_') + ADVANCE(215); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == '_') + ADVANCE(216); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 186: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'r') + ADVANCE(217); END_STATE(); case 187: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'u') + ADVANCE(218); END_STATE(); case 188: if (lookahead == 't') - ADVANCE(99); + ADVANCE(219); END_STATE(); case 189: - if (lookahead == '_') - ADVANCE(214); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 190: - if (lookahead == 'e') - ADVANCE(215); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 191: - if (lookahead == 'c') - ADVANCE(216); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == '_') + ADVANCE(220); END_STATE(); case 195: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'e') + ADVANCE(221); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'c') + ADVANCE(222); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 199: - if (lookahead == 'f') - ADVANCE(217); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 200: - if (lookahead == '_') - ADVANCE(218); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 201: - if (lookahead == '_') - ADVANCE(219); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 202: - if (lookahead == '_') - ADVANCE(220); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 203: - if (lookahead == 't') - ADVANCE(99); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 204: - if (lookahead == 'r') - ADVANCE(221); + if (lookahead == 'f') + ADVANCE(223); END_STATE(); case 205: - if (lookahead == 'e') - ADVANCE(222); + if (lookahead == '_') + ADVANCE(224); END_STATE(); case 206: - if (lookahead == 'l') - ADVANCE(223); + if (lookahead == '_') + ADVANCE(225); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == '_') + ADVANCE(226); END_STATE(); case 208: if (lookahead == 't') - ADVANCE(99); + ADVANCE(102); END_STATE(); case 209: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'r') + ADVANCE(227); END_STATE(); case 210: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'e') + ADVANCE(228); END_STATE(); case 211: - if (lookahead == '_') - ADVANCE(224); + if (lookahead == 'l') + ADVANCE(229); END_STATE(); case 212: - if (lookahead == 'e') - ADVANCE(225); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'b') + ADVANCE(230); END_STATE(); case 214: if (lookahead == 't') - ADVANCE(99); + ADVANCE(102); END_STATE(); case 215: - if (lookahead == 'r') - ADVANCE(226); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 216: if (lookahead == 't') - ADVANCE(227); + ADVANCE(102); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == '_') + ADVANCE(231); END_STATE(); case 218: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'e') + ADVANCE(232); END_STATE(); case 219: - if (lookahead == 't') - ADVANCE(99); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 220: if (lookahead == 't') - ADVANCE(99); + ADVANCE(102); END_STATE(); case 221: - if (lookahead == '_') - ADVANCE(228); + if (lookahead == 'r') + ADVANCE(233); END_STATE(); case 222: - if (lookahead == 'd') - ADVANCE(229); + if (lookahead == 't') + ADVANCE(234); END_STATE(); case 223: - if (lookahead == 'e') - ADVANCE(230); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 224: if (lookahead == 't') - ADVANCE(99); + ADVANCE(102); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 't') + ADVANCE(102); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == '_') + ADVANCE(235); END_STATE(); case 228: - if (lookahead == 't') - ADVANCE(99); + if (lookahead == 'd') + ADVANCE(236); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'e') + ADVANCE(237); END_STATE(); case 230: + if (lookahead == 'u') + ADVANCE(238); + END_STATE(); + case 231: + if (lookahead == 't') + ADVANCE(102); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 235: + if (lookahead == 't') + ADVANCE(102); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 237: ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); + case 238: + if (lookahead == 't') + ADVANCE(239); + END_STATE(); + case 239: + if (lookahead == 'e') + ADVANCE(240); + END_STATE(); + case 240: + if (lookahead == '_') + ADVANCE(241); + END_STATE(); + case 241: + if (lookahead == '_') + ADVANCE(242); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); default: return false; } @@ -5835,244 +5900,244 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1] = {.lex_state = 154}, [2] = {.lex_state = 154}, [3] = {.lex_state = 154}, - [4] = {.lex_state = 162}, - [5] = {.lex_state = 167}, - [6] = {.lex_state = 154}, - [7] = {.lex_state = 169}, - [8] = {.lex_state = 187}, + [4] = {.lex_state = 154}, + [5] = {.lex_state = 162}, + [6] = {.lex_state = 165}, + [7] = {.lex_state = 154}, + [8] = {.lex_state = 154}, [9] = {.lex_state = 154}, - [10] = {.lex_state = 189}, + [10] = {.lex_state = 173}, [11] = {.lex_state = 154}, - [12] = {.lex_state = 154}, + [12] = {.lex_state = 191}, [13] = {.lex_state = 154}, [14] = {.lex_state = 154}, [15] = {.lex_state = 154}, [16] = {.lex_state = 154}, [17] = {.lex_state = 154}, [18] = {.lex_state = 154}, - [19] = {.lex_state = 154}, + [19] = {.lex_state = 193}, [20] = {.lex_state = 154}, - [21] = {.lex_state = 191}, + [21] = {.lex_state = 198}, [22] = {.lex_state = 154}, [23] = {.lex_state = 154}, [24] = {.lex_state = 154}, - [25] = {.lex_state = 196}, + [25] = {.lex_state = 154}, [26] = {.lex_state = 154}, - [27] = {.lex_state = 201}, + [27] = {.lex_state = 199}, [28] = {.lex_state = 154}, [29] = {.lex_state = 154}, [30] = {.lex_state = 154}, [31] = {.lex_state = 154}, [32] = {.lex_state = 154}, - [33] = {.lex_state = 154}, - [34] = {.lex_state = 162}, - [35] = {.lex_state = 162}, + [33] = {.lex_state = 204}, + [34] = {.lex_state = 154}, + [35] = {.lex_state = 199}, [36] = {.lex_state = 154}, [37] = {.lex_state = 154}, - [38] = {.lex_state = 154}, + [38] = {.lex_state = 199}, [39] = {.lex_state = 154}, - [40] = {.lex_state = 162}, + [40] = {.lex_state = 154}, [41] = {.lex_state = 0}, - [42] = {.lex_state = 154}, + [42] = {.lex_state = 199}, [43] = {.lex_state = 154}, - [44] = {.lex_state = 209}, + [44] = {.lex_state = 154}, [45] = {.lex_state = 154}, [46] = {.lex_state = 154}, - [47] = {.lex_state = 210}, - [48] = {.lex_state = 154}, + [47] = {.lex_state = 154}, + [48] = {.lex_state = 199}, [49] = {.lex_state = 154}, [50] = {.lex_state = 154}, - [51] = {.lex_state = 154}, - [52] = {.lex_state = 210}, - [53] = {.lex_state = 210}, - [54] = {.lex_state = 210}, - [55] = {.lex_state = 154}, - [56] = {.lex_state = 210}, - [57] = {.lex_state = 210}, - [58] = {.lex_state = 210}, - [59] = {.lex_state = 210}, - [60] = {.lex_state = 154}, + [51] = {.lex_state = 209}, + [52] = {.lex_state = 198}, + [53] = {.lex_state = 198}, + [54] = {.lex_state = 154}, + [55] = {.lex_state = 199}, + [56] = {.lex_state = 212}, + [57] = {.lex_state = 165}, + [58] = {.lex_state = 154}, + [59] = {.lex_state = 154}, + [60] = {.lex_state = 199}, [61] = {.lex_state = 154}, [62] = {.lex_state = 154}, [63] = {.lex_state = 154}, [64] = {.lex_state = 154}, - [65] = {.lex_state = 211}, - [66] = {.lex_state = 213}, - [67] = {.lex_state = 209}, - [68] = {.lex_state = 189}, + [65] = {.lex_state = 212}, + [66] = {.lex_state = 154}, + [67] = {.lex_state = 213}, + [68] = {.lex_state = 154}, [69] = {.lex_state = 154}, [70] = {.lex_state = 154}, [71] = {.lex_state = 154}, [72] = {.lex_state = 154}, - [73] = {.lex_state = 154}, - [74] = {.lex_state = 154}, - [75] = {.lex_state = 154}, + [73] = {.lex_state = 199}, + [74] = {.lex_state = 212}, + [75] = {.lex_state = 215}, [76] = {.lex_state = 154}, - [77] = {.lex_state = 162}, - [78] = {.lex_state = 209}, + [77] = {.lex_state = 154}, + [78] = {.lex_state = 154}, [79] = {.lex_state = 154}, [80] = {.lex_state = 154}, - [81] = {.lex_state = 154}, + [81] = {.lex_state = 216}, [82] = {.lex_state = 154}, - [83] = {.lex_state = 154}, - [84] = {.lex_state = 214}, - [85] = {.lex_state = 189}, - [86] = {.lex_state = 189}, - [87] = {.lex_state = 209}, + [83] = {.lex_state = 216}, + [84] = {.lex_state = 216}, + [85] = {.lex_state = 216}, + [86] = {.lex_state = 216}, + [87] = {.lex_state = 216}, [88] = {.lex_state = 154}, - [89] = {.lex_state = 154}, - [90] = {.lex_state = 162}, - [91] = {.lex_state = 154}, + [89] = {.lex_state = 216}, + [90] = {.lex_state = 216}, + [91] = {.lex_state = 198}, [92] = {.lex_state = 154}, [93] = {.lex_state = 154}, [94] = {.lex_state = 154}, - [95] = {.lex_state = 154}, - [96] = {.lex_state = 162}, - [97] = {.lex_state = 162}, - [98] = {.lex_state = 154}, - [99] = {.lex_state = 213}, - [100] = {.lex_state = 201}, - [101] = {.lex_state = 154}, + [95] = {.lex_state = 212}, + [96] = {.lex_state = 154}, + [97] = {.lex_state = 154}, + [98] = {.lex_state = 215}, + [99] = {.lex_state = 154}, + [100] = {.lex_state = 165}, + [101] = {.lex_state = 212}, [102] = {.lex_state = 154}, [103] = {.lex_state = 154}, - [104] = {.lex_state = 162}, - [105] = {.lex_state = 215}, - [106] = {.lex_state = 189}, - [107] = {.lex_state = 189}, + [104] = {.lex_state = 154}, + [105] = {.lex_state = 198}, + [106] = {.lex_state = 198}, + [107] = {.lex_state = 154}, [108] = {.lex_state = 154}, - [109] = {.lex_state = 189}, - [110] = {.lex_state = 189}, - [111] = {.lex_state = 209}, - [112] = {.lex_state = 201}, + [109] = {.lex_state = 217}, + [110] = {.lex_state = 198}, + [111] = {.lex_state = 198}, + [112] = {.lex_state = 154}, [113] = {.lex_state = 154}, - [114] = {.lex_state = 162}, + [114] = {.lex_state = 154}, [115] = {.lex_state = 154}, [116] = {.lex_state = 154}, [117] = {.lex_state = 154}, [118] = {.lex_state = 154}, - [119] = {.lex_state = 154}, + [119] = {.lex_state = 199}, [120] = {.lex_state = 154}, - [121] = {.lex_state = 218}, - [122] = {.lex_state = 162}, - [123] = {.lex_state = 154}, - [124] = {.lex_state = 154}, + [121] = {.lex_state = 154}, + [122] = {.lex_state = 154}, + [123] = {.lex_state = 199}, + [124] = {.lex_state = 199}, [125] = {.lex_state = 154}, [126] = {.lex_state = 154}, - [127] = {.lex_state = 154}, - [128] = {.lex_state = 162}, + [127] = {.lex_state = 218}, + [128] = {.lex_state = 154}, [129] = {.lex_state = 154}, - [130] = {.lex_state = 154}, - [131] = {.lex_state = 154}, + [130] = {.lex_state = 198}, + [131] = {.lex_state = 198}, [132] = {.lex_state = 154}, - [133] = {.lex_state = 189}, - [134] = {.lex_state = 189}, + [133] = {.lex_state = 154}, + [134] = {.lex_state = 199}, [135] = {.lex_state = 154}, - [136] = {.lex_state = 219}, + [136] = {.lex_state = 154}, [137] = {.lex_state = 154}, [138] = {.lex_state = 154}, [139] = {.lex_state = 154}, - [140] = {.lex_state = 209}, + [140] = {.lex_state = 154}, [141] = {.lex_state = 154}, [142] = {.lex_state = 154}, [143] = {.lex_state = 154}, [144] = {.lex_state = 154}, - [145] = {.lex_state = 154}, + [145] = {.lex_state = 212}, [146] = {.lex_state = 154}, [147] = {.lex_state = 154}, [148] = {.lex_state = 154}, [149] = {.lex_state = 154}, - [150] = {.lex_state = 154}, + [150] = {.lex_state = 219}, [151] = {.lex_state = 154}, [152] = {.lex_state = 154}, - [153] = {.lex_state = 209}, - [154] = {.lex_state = 154}, + [153] = {.lex_state = 154}, + [154] = {.lex_state = 212}, [155] = {.lex_state = 154}, [156] = {.lex_state = 154}, - [157] = {.lex_state = 162}, - [158] = {.lex_state = 162}, - [159] = {.lex_state = 210}, + [157] = {.lex_state = 154}, + [158] = {.lex_state = 199}, + [159] = {.lex_state = 199}, [160] = {.lex_state = 154}, [161] = {.lex_state = 154}, [162] = {.lex_state = 154}, [163] = {.lex_state = 154}, [164] = {.lex_state = 154}, [165] = {.lex_state = 154}, - [166] = {.lex_state = 210}, + [166] = {.lex_state = 154}, [167] = {.lex_state = 154}, - [168] = {.lex_state = 210}, - [169] = {.lex_state = 154}, - [170] = {.lex_state = 154}, + [168] = {.lex_state = 173}, + [169] = {.lex_state = 191}, + [170] = {.lex_state = 198}, [171] = {.lex_state = 154}, - [172] = {.lex_state = 154}, - [173] = {.lex_state = 154}, - [174] = {.lex_state = 154}, + [172] = {.lex_state = 199}, + [173] = {.lex_state = 209}, + [174] = {.lex_state = 199}, [175] = {.lex_state = 154}, - [176] = {.lex_state = 154}, - [177] = {.lex_state = 154}, - [178] = {.lex_state = 154}, - [179] = {.lex_state = 154}, - [180] = {.lex_state = 154}, - [181] = {.lex_state = 209}, + [176] = {.lex_state = 199}, + [177] = {.lex_state = 198}, + [178] = {.lex_state = 216}, + [179] = {.lex_state = 212}, + [180] = {.lex_state = 165}, + [181] = {.lex_state = 154}, [182] = {.lex_state = 154}, [183] = {.lex_state = 154}, - [184] = {.lex_state = 210}, - [185] = {.lex_state = 210}, - [186] = {.lex_state = 220}, - [187] = {.lex_state = 222}, - [188] = {.lex_state = 210}, - [189] = {.lex_state = 210}, - [190] = {.lex_state = 210}, - [191] = {.lex_state = 210}, - [192] = {.lex_state = 210}, - [193] = {.lex_state = 210}, - [194] = {.lex_state = 162}, + [184] = {.lex_state = 154}, + [185] = {.lex_state = 154}, + [186] = {.lex_state = 154}, + [187] = {.lex_state = 154}, + [188] = {.lex_state = 154}, + [189] = {.lex_state = 216}, + [190] = {.lex_state = 154}, + [191] = {.lex_state = 199}, + [192] = {.lex_state = 199}, + [193] = {.lex_state = 154}, + [194] = {.lex_state = 154}, [195] = {.lex_state = 154}, - [196] = {.lex_state = 162}, - [197] = {.lex_state = 162}, + [196] = {.lex_state = 154}, + [197] = {.lex_state = 154}, [198] = {.lex_state = 154}, - [199] = {.lex_state = 162}, + [199] = {.lex_state = 154}, [200] = {.lex_state = 154}, [201] = {.lex_state = 154}, [202] = {.lex_state = 154}, [203] = {.lex_state = 154}, [204] = {.lex_state = 154}, - [205] = {.lex_state = 162}, + [205] = {.lex_state = 154}, [206] = {.lex_state = 154}, - [207] = {.lex_state = 223}, - [208] = {.lex_state = 154}, - [209] = {.lex_state = 169}, - [210] = {.lex_state = 187}, + [207] = {.lex_state = 220}, + [208] = {.lex_state = 173}, + [209] = {.lex_state = 191}, + [210] = {.lex_state = 154}, [211] = {.lex_state = 154}, [212] = {.lex_state = 154}, [213] = {.lex_state = 154}, [214] = {.lex_state = 154}, - [215] = {.lex_state = 154}, + [215] = {.lex_state = 193}, [216] = {.lex_state = 154}, [217] = {.lex_state = 154}, - [218] = {.lex_state = 191}, - [219] = {.lex_state = 154}, + [218] = {.lex_state = 154}, + [219] = {.lex_state = 199}, [220] = {.lex_state = 154}, [221] = {.lex_state = 154}, [222] = {.lex_state = 154}, - [223] = {.lex_state = 213}, - [224] = {.lex_state = 187}, + [223] = {.lex_state = 215}, + [224] = {.lex_state = 191}, [225] = {.lex_state = 154}, - [226] = {.lex_state = 154}, - [227] = {.lex_state = 226}, - [228] = {.lex_state = 213}, - [229] = {.lex_state = 162}, + [226] = {.lex_state = 223}, + [227] = {.lex_state = 154}, + [228] = {.lex_state = 215}, + [229] = {.lex_state = 199}, [230] = {.lex_state = 154}, [231] = {.lex_state = 154}, [232] = {.lex_state = 154}, [233] = {.lex_state = 154}, [234] = {.lex_state = 154}, - [235] = {.lex_state = 233}, - [236] = {.lex_state = 162}, - [237] = {.lex_state = 154}, - [238] = {.lex_state = 210}, + [235] = {.lex_state = 154}, + [236] = {.lex_state = 216}, + [237] = {.lex_state = 216}, + [238] = {.lex_state = 154}, [239] = {.lex_state = 154}, - [240] = {.lex_state = 162}, - [241] = {.lex_state = 162}, + [240] = {.lex_state = 216}, + [241] = {.lex_state = 216}, [242] = {.lex_state = 154}, [243] = {.lex_state = 154}, [244] = {.lex_state = 154}, @@ -6084,378 +6149,378 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [250] = {.lex_state = 154}, [251] = {.lex_state = 154}, [252] = {.lex_state = 154}, - [253] = {.lex_state = 210}, - [254] = {.lex_state = 210}, - [255] = {.lex_state = 162}, + [253] = {.lex_state = 212}, + [254] = {.lex_state = 154}, + [255] = {.lex_state = 154}, [256] = {.lex_state = 154}, - [257] = {.lex_state = 154}, - [258] = {.lex_state = 154}, - [259] = {.lex_state = 154}, - [260] = {.lex_state = 154}, - [261] = {.lex_state = 154}, - [262] = {.lex_state = 154}, - [263] = {.lex_state = 189}, - [264] = {.lex_state = 154}, - [265] = {.lex_state = 214}, - [266] = {.lex_state = 214}, - [267] = {.lex_state = 189}, - [268] = {.lex_state = 210}, - [269] = {.lex_state = 154}, + [257] = {.lex_state = 216}, + [258] = {.lex_state = 216}, + [259] = {.lex_state = 230}, + [260] = {.lex_state = 232}, + [261] = {.lex_state = 216}, + [262] = {.lex_state = 216}, + [263] = {.lex_state = 216}, + [264] = {.lex_state = 216}, + [265] = {.lex_state = 154}, + [266] = {.lex_state = 233}, + [267] = {.lex_state = 154}, + [268] = {.lex_state = 154}, + [269] = {.lex_state = 199}, [270] = {.lex_state = 154}, - [271] = {.lex_state = 162}, + [271] = {.lex_state = 199}, [272] = {.lex_state = 154}, [273] = {.lex_state = 154}, - [274] = {.lex_state = 154}, + [274] = {.lex_state = 199}, [275] = {.lex_state = 154}, [276] = {.lex_state = 154}, - [277] = {.lex_state = 162}, - [278] = {.lex_state = 162}, - [279] = {.lex_state = 154}, - [280] = {.lex_state = 154}, + [277] = {.lex_state = 154}, + [278] = {.lex_state = 154}, + [279] = {.lex_state = 223}, + [280] = {.lex_state = 215}, [281] = {.lex_state = 154}, - [282] = {.lex_state = 154}, + [282] = {.lex_state = 165}, [283] = {.lex_state = 154}, [284] = {.lex_state = 154}, [285] = {.lex_state = 154}, - [286] = {.lex_state = 154}, - [287] = {.lex_state = 154}, + [286] = {.lex_state = 216}, + [287] = {.lex_state = 216}, [288] = {.lex_state = 154}, - [289] = {.lex_state = 154}, + [289] = {.lex_state = 199}, [290] = {.lex_state = 154}, [291] = {.lex_state = 154}, - [292] = {.lex_state = 226}, - [293] = {.lex_state = 213}, + [292] = {.lex_state = 154}, + [293] = {.lex_state = 198}, [294] = {.lex_state = 154}, - [295] = {.lex_state = 201}, - [296] = {.lex_state = 154}, - [297] = {.lex_state = 154}, + [295] = {.lex_state = 154}, + [296] = {.lex_state = 217}, + [297] = {.lex_state = 198}, [298] = {.lex_state = 154}, - [299] = {.lex_state = 210}, - [300] = {.lex_state = 154}, - [301] = {.lex_state = 169}, - [302] = {.lex_state = 187}, - [303] = {.lex_state = 189}, + [299] = {.lex_state = 217}, + [300] = {.lex_state = 198}, + [301] = {.lex_state = 199}, + [302] = {.lex_state = 216}, + [303] = {.lex_state = 199}, [304] = {.lex_state = 154}, - [305] = {.lex_state = 162}, + [305] = {.lex_state = 154}, [306] = {.lex_state = 154}, - [307] = {.lex_state = 162}, - [308] = {.lex_state = 162}, - [309] = {.lex_state = 215}, - [310] = {.lex_state = 189}, - [311] = {.lex_state = 209}, - [312] = {.lex_state = 189}, - [313] = {.lex_state = 209}, - [314] = {.lex_state = 201}, - [315] = {.lex_state = 154}, + [307] = {.lex_state = 154}, + [308] = {.lex_state = 154}, + [309] = {.lex_state = 154}, + [310] = {.lex_state = 199}, + [311] = {.lex_state = 154}, + [312] = {.lex_state = 216}, + [313] = {.lex_state = 154}, + [314] = {.lex_state = 199}, + [315] = {.lex_state = 199}, [316] = {.lex_state = 154}, [317] = {.lex_state = 154}, [318] = {.lex_state = 154}, [319] = {.lex_state = 154}, [320] = {.lex_state = 154}, [321] = {.lex_state = 154}, - [322] = {.lex_state = 211}, + [322] = {.lex_state = 154}, [323] = {.lex_state = 154}, - [324] = {.lex_state = 220}, - [325] = {.lex_state = 169}, + [324] = {.lex_state = 154}, + [325] = {.lex_state = 154}, [326] = {.lex_state = 154}, [327] = {.lex_state = 154}, [328] = {.lex_state = 154}, - [329] = {.lex_state = 154}, + [329] = {.lex_state = 213}, [330] = {.lex_state = 154}, - [331] = {.lex_state = 154}, - [332] = {.lex_state = 162}, - [333] = {.lex_state = 154}, - [334] = {.lex_state = 154}, - [335] = {.lex_state = 209}, - [336] = {.lex_state = 210}, - [337] = {.lex_state = 162}, - [338] = {.lex_state = 162}, - [339] = {.lex_state = 162}, - [340] = {.lex_state = 162}, - [341] = {.lex_state = 162}, - [342] = {.lex_state = 233}, - [343] = {.lex_state = 162}, + [331] = {.lex_state = 230}, + [332] = {.lex_state = 173}, + [333] = {.lex_state = 212}, + [334] = {.lex_state = 216}, + [335] = {.lex_state = 199}, + [336] = {.lex_state = 154}, + [337] = {.lex_state = 212}, + [338] = {.lex_state = 199}, + [339] = {.lex_state = 199}, + [340] = {.lex_state = 199}, + [341] = {.lex_state = 154}, + [342] = {.lex_state = 154}, + [343] = {.lex_state = 154}, [344] = {.lex_state = 154}, - [345] = {.lex_state = 154}, - [346] = {.lex_state = 162}, + [345] = {.lex_state = 234}, + [346] = {.lex_state = 154}, [347] = {.lex_state = 154}, - [348] = {.lex_state = 154}, - [349] = {.lex_state = 154}, - [350] = {.lex_state = 154}, - [351] = {.lex_state = 162}, - [352] = {.lex_state = 162}, - [353] = {.lex_state = 162}, - [354] = {.lex_state = 162}, - [355] = {.lex_state = 154}, - [356] = {.lex_state = 154}, - [357] = {.lex_state = 234}, - [358] = {.lex_state = 154}, - [359] = {.lex_state = 154}, - [360] = {.lex_state = 154}, + [348] = {.lex_state = 234}, + [349] = {.lex_state = 234}, + [350] = {.lex_state = 199}, + [351] = {.lex_state = 233}, + [352] = {.lex_state = 199}, + [353] = {.lex_state = 199}, + [354] = {.lex_state = 199}, + [355] = {.lex_state = 199}, + [356] = {.lex_state = 212}, + [357] = {.lex_state = 212}, + [358] = {.lex_state = 216}, + [359] = {.lex_state = 199}, + [360] = {.lex_state = 199}, [361] = {.lex_state = 154}, - [362] = {.lex_state = 234}, - [363] = {.lex_state = 234}, - [364] = {.lex_state = 209}, - [365] = {.lex_state = 162}, - [366] = {.lex_state = 162}, - [367] = {.lex_state = 209}, - [368] = {.lex_state = 154}, - [369] = {.lex_state = 210}, - [370] = {.lex_state = 233}, + [362] = {.lex_state = 154}, + [363] = {.lex_state = 154}, + [364] = {.lex_state = 154}, + [365] = {.lex_state = 199}, + [366] = {.lex_state = 154}, + [367] = {.lex_state = 154}, + [368] = {.lex_state = 199}, + [369] = {.lex_state = 199}, + [370] = {.lex_state = 199}, [371] = {.lex_state = 154}, - [372] = {.lex_state = 220}, - [373] = {.lex_state = 222}, + [372] = {.lex_state = 154}, + [373] = {.lex_state = 216}, [374] = {.lex_state = 154}, [375] = {.lex_state = 154}, - [376] = {.lex_state = 154}, + [376] = {.lex_state = 230}, [377] = {.lex_state = 154}, - [378] = {.lex_state = 162}, - [379] = {.lex_state = 233}, - [380] = {.lex_state = 154}, - [381] = {.lex_state = 210}, - [382] = {.lex_state = 210}, + [378] = {.lex_state = 232}, + [379] = {.lex_state = 154}, + [380] = {.lex_state = 199}, + [381] = {.lex_state = 199}, + [382] = {.lex_state = 154}, [383] = {.lex_state = 154}, - [384] = {.lex_state = 210}, - [385] = {.lex_state = 210}, - [386] = {.lex_state = 154}, + [384] = {.lex_state = 199}, + [385] = {.lex_state = 154}, + [386] = {.lex_state = 199}, [387] = {.lex_state = 154}, [388] = {.lex_state = 154}, [389] = {.lex_state = 154}, - [390] = {.lex_state = 154}, - [391] = {.lex_state = 154}, - [392] = {.lex_state = 154}, - [393] = {.lex_state = 154}, - [394] = {.lex_state = 154}, - [395] = {.lex_state = 154}, - [396] = {.lex_state = 154}, - [397] = {.lex_state = 210}, - [398] = {.lex_state = 210}, - [399] = {.lex_state = 210}, - [400] = {.lex_state = 210}, - [401] = {.lex_state = 210}, - [402] = {.lex_state = 210}, - [403] = {.lex_state = 210}, - [404] = {.lex_state = 162}, - [405] = {.lex_state = 210}, - [406] = {.lex_state = 210}, - [407] = {.lex_state = 210}, - [408] = {.lex_state = 210}, - [409] = {.lex_state = 214}, - [410] = {.lex_state = 209}, - [411] = {.lex_state = 209}, - [412] = {.lex_state = 210}, - [413] = {.lex_state = 210}, - [414] = {.lex_state = 210}, - [415] = {.lex_state = 210}, - [416] = {.lex_state = 189}, - [417] = {.lex_state = 210}, - [418] = {.lex_state = 154}, - [419] = {.lex_state = 210}, - [420] = {.lex_state = 210}, - [421] = {.lex_state = 210}, - [422] = {.lex_state = 222}, - [423] = {.lex_state = 210}, - [424] = {.lex_state = 234}, - [425] = {.lex_state = 222}, - [426] = {.lex_state = 210}, - [427] = {.lex_state = 210}, - [428] = {.lex_state = 210}, - [429] = {.lex_state = 222}, - [430] = {.lex_state = 210}, - [431] = {.lex_state = 189}, - [432] = {.lex_state = 219}, - [433] = {.lex_state = 162}, + [390] = {.lex_state = 199}, + [391] = {.lex_state = 235}, + [392] = {.lex_state = 209}, + [393] = {.lex_state = 213}, + [394] = {.lex_state = 235}, + [395] = {.lex_state = 218}, + [396] = {.lex_state = 199}, + [397] = {.lex_state = 198}, + [398] = {.lex_state = 209}, + [399] = {.lex_state = 199}, + [400] = {.lex_state = 199}, + [401] = {.lex_state = 198}, + [402] = {.lex_state = 154}, + [403] = {.lex_state = 154}, + [404] = {.lex_state = 154}, + [405] = {.lex_state = 209}, + [406] = {.lex_state = 154}, + [407] = {.lex_state = 199}, + [408] = {.lex_state = 217}, + [409] = {.lex_state = 154}, + [410] = {.lex_state = 154}, + [411] = {.lex_state = 199}, + [412] = {.lex_state = 154}, + [413] = {.lex_state = 154}, + [414] = {.lex_state = 154}, + [415] = {.lex_state = 154}, + [416] = {.lex_state = 199}, + [417] = {.lex_state = 154}, + [418] = {.lex_state = 199}, + [419] = {.lex_state = 154}, + [420] = {.lex_state = 216}, + [421] = {.lex_state = 199}, + [422] = {.lex_state = 199}, + [423] = {.lex_state = 199}, + [424] = {.lex_state = 199}, + [425] = {.lex_state = 199}, + [426] = {.lex_state = 199}, + [427] = {.lex_state = 199}, + [428] = {.lex_state = 199}, + [429] = {.lex_state = 199}, + [430] = {.lex_state = 199}, + [431] = {.lex_state = 199}, + [432] = {.lex_state = 215}, + [433] = {.lex_state = 154}, [434] = {.lex_state = 154}, [435] = {.lex_state = 154}, - [436] = {.lex_state = 162}, + [436] = {.lex_state = 154}, [437] = {.lex_state = 154}, [438] = {.lex_state = 154}, - [439] = {.lex_state = 154}, - [440] = {.lex_state = 154}, + [439] = {.lex_state = 173}, + [440] = {.lex_state = 191}, [441] = {.lex_state = 154}, - [442] = {.lex_state = 162}, + [442] = {.lex_state = 154}, [443] = {.lex_state = 154}, - [444] = {.lex_state = 169}, - [445] = {.lex_state = 187}, + [444] = {.lex_state = 154}, + [445] = {.lex_state = 193}, [446] = {.lex_state = 154}, [447] = {.lex_state = 154}, [448] = {.lex_state = 154}, - [449] = {.lex_state = 154}, + [449] = {.lex_state = 199}, [450] = {.lex_state = 154}, [451] = {.lex_state = 154}, [452] = {.lex_state = 154}, - [453] = {.lex_state = 191}, + [453] = {.lex_state = 220}, [454] = {.lex_state = 154}, [455] = {.lex_state = 154}, - [456] = {.lex_state = 154}, - [457] = {.lex_state = 154}, - [458] = {.lex_state = 223}, - [459] = {.lex_state = 154}, - [460] = {.lex_state = 154}, - [461] = {.lex_state = 162}, + [456] = {.lex_state = 220}, + [457] = {.lex_state = 199}, + [458] = {.lex_state = 154}, + [459] = {.lex_state = 215}, + [460] = {.lex_state = 213}, + [461] = {.lex_state = 215}, [462] = {.lex_state = 154}, [463] = {.lex_state = 154}, - [464] = {.lex_state = 223}, - [465] = {.lex_state = 213}, - [466] = {.lex_state = 211}, - [467] = {.lex_state = 213}, - [468] = {.lex_state = 154}, + [464] = {.lex_state = 154}, + [465] = {.lex_state = 215}, + [466] = {.lex_state = 215}, + [467] = {.lex_state = 215}, + [468] = {.lex_state = 165}, [469] = {.lex_state = 154}, [470] = {.lex_state = 154}, [471] = {.lex_state = 154}, [472] = {.lex_state = 154}, - [473] = {.lex_state = 213}, - [474] = {.lex_state = 162}, - [475] = {.lex_state = 213}, - [476] = {.lex_state = 213}, - [477] = {.lex_state = 201}, - [478] = {.lex_state = 213}, + [473] = {.lex_state = 215}, + [474] = {.lex_state = 199}, + [475] = {.lex_state = 154}, + [476] = {.lex_state = 215}, + [477] = {.lex_state = 215}, + [478] = {.lex_state = 218}, [479] = {.lex_state = 154}, - [480] = {.lex_state = 213}, - [481] = {.lex_state = 154}, - [482] = {.lex_state = 154}, - [483] = {.lex_state = 213}, - [484] = {.lex_state = 218}, - [485] = {.lex_state = 213}, - [486] = {.lex_state = 154}, + [480] = {.lex_state = 215}, + [481] = {.lex_state = 223}, + [482] = {.lex_state = 215}, + [483] = {.lex_state = 215}, + [484] = {.lex_state = 199}, + [485] = {.lex_state = 199}, + [486] = {.lex_state = 216}, [487] = {.lex_state = 154}, - [488] = {.lex_state = 226}, - [489] = {.lex_state = 213}, - [490] = {.lex_state = 213}, - [491] = {.lex_state = 213}, - [492] = {.lex_state = 162}, - [493] = {.lex_state = 162}, - [494] = {.lex_state = 162}, + [488] = {.lex_state = 216}, + [489] = {.lex_state = 216}, + [490] = {.lex_state = 154}, + [491] = {.lex_state = 154}, + [492] = {.lex_state = 154}, + [493] = {.lex_state = 154}, + [494] = {.lex_state = 154}, [495] = {.lex_state = 154}, - [496] = {.lex_state = 210}, + [496] = {.lex_state = 154}, [497] = {.lex_state = 154}, - [498] = {.lex_state = 233}, - [499] = {.lex_state = 222}, + [498] = {.lex_state = 154}, + [499] = {.lex_state = 154}, [500] = {.lex_state = 154}, [501] = {.lex_state = 154}, - [502] = {.lex_state = 233}, - [503] = {.lex_state = 162}, - [504] = {.lex_state = 154}, - [505] = {.lex_state = 162}, - [506] = {.lex_state = 210}, - [507] = {.lex_state = 162}, - [508] = {.lex_state = 162}, - [509] = {.lex_state = 162}, - [510] = {.lex_state = 162}, - [511] = {.lex_state = 162}, - [512] = {.lex_state = 162}, - [513] = {.lex_state = 162}, - [514] = {.lex_state = 162}, - [515] = {.lex_state = 162}, - [516] = {.lex_state = 162}, - [517] = {.lex_state = 162}, - [518] = {.lex_state = 154}, - [519] = {.lex_state = 154}, - [520] = {.lex_state = 154}, - [521] = {.lex_state = 154}, - [522] = {.lex_state = 154}, - [523] = {.lex_state = 154}, - [524] = {.lex_state = 162}, - [525] = {.lex_state = 162}, - [526] = {.lex_state = 154}, + [502] = {.lex_state = 216}, + [503] = {.lex_state = 216}, + [504] = {.lex_state = 216}, + [505] = {.lex_state = 216}, + [506] = {.lex_state = 216}, + [507] = {.lex_state = 216}, + [508] = {.lex_state = 216}, + [509] = {.lex_state = 216}, + [510] = {.lex_state = 216}, + [511] = {.lex_state = 216}, + [512] = {.lex_state = 216}, + [513] = {.lex_state = 216}, + [514] = {.lex_state = 199}, + [515] = {.lex_state = 237}, + [516] = {.lex_state = 212}, + [517] = {.lex_state = 212}, + [518] = {.lex_state = 216}, + [519] = {.lex_state = 216}, + [520] = {.lex_state = 216}, + [521] = {.lex_state = 216}, + [522] = {.lex_state = 216}, + [523] = {.lex_state = 198}, + [524] = {.lex_state = 216}, + [525] = {.lex_state = 216}, + [526] = {.lex_state = 216}, [527] = {.lex_state = 154}, - [528] = {.lex_state = 154}, - [529] = {.lex_state = 154}, - [530] = {.lex_state = 154}, - [531] = {.lex_state = 154}, - [532] = {.lex_state = 189}, - [533] = {.lex_state = 154}, - [534] = {.lex_state = 154}, - [535] = {.lex_state = 214}, - [536] = {.lex_state = 154}, - [537] = {.lex_state = 162}, - [538] = {.lex_state = 210}, - [539] = {.lex_state = 210}, + [528] = {.lex_state = 216}, + [529] = {.lex_state = 232}, + [530] = {.lex_state = 216}, + [531] = {.lex_state = 232}, + [532] = {.lex_state = 234}, + [533] = {.lex_state = 232}, + [534] = {.lex_state = 216}, + [535] = {.lex_state = 216}, + [536] = {.lex_state = 216}, + [537] = {.lex_state = 199}, + [538] = {.lex_state = 154}, + [539] = {.lex_state = 233}, [540] = {.lex_state = 154}, - [541] = {.lex_state = 162}, - [542] = {.lex_state = 162}, + [541] = {.lex_state = 216}, + [542] = {.lex_state = 154}, [543] = {.lex_state = 154}, - [544] = {.lex_state = 154}, - [545] = {.lex_state = 154}, - [546] = {.lex_state = 154}, - [547] = {.lex_state = 154}, - [548] = {.lex_state = 154}, + [544] = {.lex_state = 232}, + [545] = {.lex_state = 199}, + [546] = {.lex_state = 233}, + [547] = {.lex_state = 219}, + [548] = {.lex_state = 199}, [549] = {.lex_state = 154}, [550] = {.lex_state = 154}, [551] = {.lex_state = 154}, - [552] = {.lex_state = 154}, + [552] = {.lex_state = 199}, [553] = {.lex_state = 154}, - [554] = {.lex_state = 162}, - [555] = {.lex_state = 162}, - [556] = {.lex_state = 162}, - [557] = {.lex_state = 162}, - [558] = {.lex_state = 162}, - [559] = {.lex_state = 162}, - [560] = {.lex_state = 162}, - [561] = {.lex_state = 162}, - [562] = {.lex_state = 162}, - [563] = {.lex_state = 162}, - [564] = {.lex_state = 162}, + [554] = {.lex_state = 154}, + [555] = {.lex_state = 154}, + [556] = {.lex_state = 223}, + [557] = {.lex_state = 154}, + [558] = {.lex_state = 154}, + [559] = {.lex_state = 154}, + [560] = {.lex_state = 154}, + [561] = {.lex_state = 154}, + [562] = {.lex_state = 154}, + [563] = {.lex_state = 154}, + [564] = {.lex_state = 154}, [565] = {.lex_state = 154}, - [566] = {.lex_state = 226}, + [566] = {.lex_state = 154}, [567] = {.lex_state = 154}, - [568] = {.lex_state = 154}, + [568] = {.lex_state = 199}, [569] = {.lex_state = 154}, - [570] = {.lex_state = 235}, - [571] = {.lex_state = 236}, - [572] = {.lex_state = 215}, - [573] = {.lex_state = 211}, - [574] = {.lex_state = 236}, - [575] = {.lex_state = 218}, - [576] = {.lex_state = 162}, - [577] = {.lex_state = 162}, - [578] = {.lex_state = 162}, - [579] = {.lex_state = 154}, + [570] = {.lex_state = 154}, + [571] = {.lex_state = 199}, + [572] = {.lex_state = 154}, + [573] = {.lex_state = 154}, + [574] = {.lex_state = 154}, + [575] = {.lex_state = 198}, + [576] = {.lex_state = 154}, + [577] = {.lex_state = 217}, + [578] = {.lex_state = 198}, + [579] = {.lex_state = 216}, [580] = {.lex_state = 154}, - [581] = {.lex_state = 189}, - [582] = {.lex_state = 154}, - [583] = {.lex_state = 215}, - [584] = {.lex_state = 162}, + [581] = {.lex_state = 199}, + [582] = {.lex_state = 199}, + [583] = {.lex_state = 154}, + [584] = {.lex_state = 154}, [585] = {.lex_state = 154}, - [586] = {.lex_state = 189}, - [587] = {.lex_state = 215}, + [586] = {.lex_state = 154}, + [587] = {.lex_state = 154}, [588] = {.lex_state = 154}, - [589] = {.lex_state = 162}, + [589] = {.lex_state = 154}, [590] = {.lex_state = 154}, - [591] = {.lex_state = 162}, + [591] = {.lex_state = 154}, [592] = {.lex_state = 154}, [593] = {.lex_state = 154}, - [594] = {.lex_state = 154}, + [594] = {.lex_state = 199}, [595] = {.lex_state = 154}, - [596] = {.lex_state = 154}, - [597] = {.lex_state = 154}, - [598] = {.lex_state = 210}, - [599] = {.lex_state = 169}, - [600] = {.lex_state = 154}, - [601] = {.lex_state = 211}, - [602] = {.lex_state = 162}, - [603] = {.lex_state = 154}, - [604] = {.lex_state = 162}, - [605] = {.lex_state = 162}, - [606] = {.lex_state = 154}, - [607] = {.lex_state = 154}, + [596] = {.lex_state = 216}, + [597] = {.lex_state = 199}, + [598] = {.lex_state = 199}, + [599] = {.lex_state = 199}, + [600] = {.lex_state = 199}, + [601] = {.lex_state = 199}, + [602] = {.lex_state = 199}, + [603] = {.lex_state = 199}, + [604] = {.lex_state = 199}, + [605] = {.lex_state = 199}, + [606] = {.lex_state = 199}, + [607] = {.lex_state = 199}, [608] = {.lex_state = 154}, - [609] = {.lex_state = 154}, - [610] = {.lex_state = 154}, - [611] = {.lex_state = 209}, - [612] = {.lex_state = 210}, - [613] = {.lex_state = 210}, + [609] = {.lex_state = 216}, + [610] = {.lex_state = 173}, + [611] = {.lex_state = 154}, + [612] = {.lex_state = 213}, + [613] = {.lex_state = 198}, [614] = {.lex_state = 154}, [615] = {.lex_state = 154}, - [616] = {.lex_state = 162}, + [616] = {.lex_state = 154}, [617] = {.lex_state = 154}, [618] = {.lex_state = 154}, - [619] = {.lex_state = 154}, + [619] = {.lex_state = 234}, [620] = {.lex_state = 154}, - [621] = {.lex_state = 154}, - [622] = {.lex_state = 162}, - [623] = {.lex_state = 162}, - [624] = {.lex_state = 154}, + [621] = {.lex_state = 216}, + [622] = {.lex_state = 154}, + [623] = {.lex_state = 234}, + [624] = {.lex_state = 234}, [625] = {.lex_state = 154}, [626] = {.lex_state = 154}, [627] = {.lex_state = 154}, @@ -6466,23 +6531,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [632] = {.lex_state = 154}, [633] = {.lex_state = 154}, [634] = {.lex_state = 154}, - [635] = {.lex_state = 154}, - [636] = {.lex_state = 210}, + [635] = {.lex_state = 212}, + [636] = {.lex_state = 154}, [637] = {.lex_state = 154}, - [638] = {.lex_state = 154}, - [639] = {.lex_state = 234}, + [638] = {.lex_state = 212}, + [639] = {.lex_state = 216}, [640] = {.lex_state = 154}, [641] = {.lex_state = 154}, [642] = {.lex_state = 154}, [643] = {.lex_state = 154}, [644] = {.lex_state = 154}, - [645] = {.lex_state = 234}, - [646] = {.lex_state = 234}, - [647] = {.lex_state = 154}, + [645] = {.lex_state = 199}, + [646] = {.lex_state = 154}, + [647] = {.lex_state = 216}, [648] = {.lex_state = 154}, - [649] = {.lex_state = 154}, - [650] = {.lex_state = 154}, - [651] = {.lex_state = 209}, + [649] = {.lex_state = 199}, + [650] = {.lex_state = 199}, + [651] = {.lex_state = 154}, [652] = {.lex_state = 154}, [653] = {.lex_state = 154}, [654] = {.lex_state = 154}, @@ -6491,253 +6556,253 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [657] = {.lex_state = 154}, [658] = {.lex_state = 154}, [659] = {.lex_state = 154}, - [660] = {.lex_state = 233}, - [661] = {.lex_state = 233}, + [660] = {.lex_state = 154}, + [661] = {.lex_state = 154}, [662] = {.lex_state = 154}, - [663] = {.lex_state = 222}, - [664] = {.lex_state = 233}, - [665] = {.lex_state = 234}, - [666] = {.lex_state = 222}, - [667] = {.lex_state = 162}, - [668] = {.lex_state = 162}, - [669] = {.lex_state = 162}, - [670] = {.lex_state = 162}, - [671] = {.lex_state = 154}, - [672] = {.lex_state = 162}, - [673] = {.lex_state = 154}, - [674] = {.lex_state = 210}, - [675] = {.lex_state = 210}, - [676] = {.lex_state = 210}, - [677] = {.lex_state = 210}, - [678] = {.lex_state = 210}, - [679] = {.lex_state = 210}, - [680] = {.lex_state = 210}, - [681] = {.lex_state = 210}, - [682] = {.lex_state = 162}, - [683] = {.lex_state = 210}, - [684] = {.lex_state = 210}, - [685] = {.lex_state = 210}, - [686] = {.lex_state = 210}, - [687] = {.lex_state = 238}, + [663] = {.lex_state = 199}, + [664] = {.lex_state = 154}, + [665] = {.lex_state = 216}, + [666] = {.lex_state = 154}, + [667] = {.lex_state = 233}, + [668] = {.lex_state = 216}, + [669] = {.lex_state = 199}, + [670] = {.lex_state = 199}, + [671] = {.lex_state = 199}, + [672] = {.lex_state = 199}, + [673] = {.lex_state = 232}, + [674] = {.lex_state = 233}, + [675] = {.lex_state = 232}, + [676] = {.lex_state = 234}, + [677] = {.lex_state = 154}, + [678] = {.lex_state = 199}, + [679] = {.lex_state = 199}, + [680] = {.lex_state = 219}, + [681] = {.lex_state = 199}, + [682] = {.lex_state = 154}, + [683] = {.lex_state = 154}, + [684] = {.lex_state = 154}, + [685] = {.lex_state = 154}, + [686] = {.lex_state = 154}, + [687] = {.lex_state = 154}, [688] = {.lex_state = 154}, - [689] = {.lex_state = 154}, - [690] = {.lex_state = 154}, - [691] = {.lex_state = 239}, - [692] = {.lex_state = 154}, - [693] = {.lex_state = 154}, + [689] = {.lex_state = 238}, + [690] = {.lex_state = 173}, + [691] = {.lex_state = 191}, + [692] = {.lex_state = 209}, + [693] = {.lex_state = 191}, [694] = {.lex_state = 154}, - [695] = {.lex_state = 154}, - [696] = {.lex_state = 154}, - [697] = {.lex_state = 209}, - [698] = {.lex_state = 154}, - [699] = {.lex_state = 154}, - [700] = {.lex_state = 239}, - [701] = {.lex_state = 239}, - [702] = {.lex_state = 162}, - [703] = {.lex_state = 214}, - [704] = {.lex_state = 210}, - [705] = {.lex_state = 220}, - [706] = {.lex_state = 189}, - [707] = {.lex_state = 210}, - [708] = {.lex_state = 210}, - [709] = {.lex_state = 210}, - [710] = {.lex_state = 210}, - [711] = {.lex_state = 220}, - [712] = {.lex_state = 210}, - [713] = {.lex_state = 210}, - [714] = {.lex_state = 210}, - [715] = {.lex_state = 210}, - [716] = {.lex_state = 210}, - [717] = {.lex_state = 222}, - [718] = {.lex_state = 234}, - [719] = {.lex_state = 222}, - [720] = {.lex_state = 210}, - [721] = {.lex_state = 222}, + [695] = {.lex_state = 235}, + [696] = {.lex_state = 223}, + [697] = {.lex_state = 199}, + [698] = {.lex_state = 209}, + [699] = {.lex_state = 209}, + [700] = {.lex_state = 235}, + [701] = {.lex_state = 223}, + [702] = {.lex_state = 213}, + [703] = {.lex_state = 209}, + [704] = {.lex_state = 173}, + [705] = {.lex_state = 199}, + [706] = {.lex_state = 199}, + [707] = {.lex_state = 154}, + [708] = {.lex_state = 198}, + [709] = {.lex_state = 154}, + [710] = {.lex_state = 216}, + [711] = {.lex_state = 199}, + [712] = {.lex_state = 209}, + [713] = {.lex_state = 154}, + [714] = {.lex_state = 232}, + [715] = {.lex_state = 199}, + [716] = {.lex_state = 154}, + [717] = {.lex_state = 198}, + [718] = {.lex_state = 154}, + [719] = {.lex_state = 154}, + [720] = {.lex_state = 154}, + [721] = {.lex_state = 154}, [722] = {.lex_state = 154}, - [723] = {.lex_state = 210}, - [724] = {.lex_state = 219}, - [725] = {.lex_state = 162}, - [726] = {.lex_state = 154}, + [723] = {.lex_state = 219}, + [724] = {.lex_state = 199}, + [725] = {.lex_state = 154}, + [726] = {.lex_state = 217}, [727] = {.lex_state = 154}, - [728] = {.lex_state = 154}, - [729] = {.lex_state = 162}, - [730] = {.lex_state = 213}, - [731] = {.lex_state = 154}, - [732] = {.lex_state = 162}, + [728] = {.lex_state = 215}, + [729] = {.lex_state = 154}, + [730] = {.lex_state = 215}, + [731] = {.lex_state = 220}, + [732] = {.lex_state = 154}, [733] = {.lex_state = 154}, [734] = {.lex_state = 154}, - [735] = {.lex_state = 223}, - [736] = {.lex_state = 211}, - [737] = {.lex_state = 213}, + [735] = {.lex_state = 220}, + [736] = {.lex_state = 213}, + [737] = {.lex_state = 215}, [738] = {.lex_state = 154}, [739] = {.lex_state = 154}, [740] = {.lex_state = 154}, - [741] = {.lex_state = 154}, - [742] = {.lex_state = 154}, - [743] = {.lex_state = 223}, - [744] = {.lex_state = 162}, - [745] = {.lex_state = 223}, - [746] = {.lex_state = 213}, - [747] = {.lex_state = 201}, - [748] = {.lex_state = 223}, - [749] = {.lex_state = 154}, - [750] = {.lex_state = 223}, + [741] = {.lex_state = 220}, + [742] = {.lex_state = 215}, + [743] = {.lex_state = 220}, + [744] = {.lex_state = 165}, + [745] = {.lex_state = 154}, + [746] = {.lex_state = 154}, + [747] = {.lex_state = 154}, + [748] = {.lex_state = 154}, + [749] = {.lex_state = 220}, + [750] = {.lex_state = 199}, [751] = {.lex_state = 154}, - [752] = {.lex_state = 154}, + [752] = {.lex_state = 220}, [753] = {.lex_state = 218}, - [754] = {.lex_state = 223}, - [755] = {.lex_state = 154}, - [756] = {.lex_state = 223}, - [757] = {.lex_state = 223}, - [758] = {.lex_state = 162}, - [759] = {.lex_state = 162}, - [760] = {.lex_state = 223}, - [761] = {.lex_state = 213}, - [762] = {.lex_state = 213}, - [763] = {.lex_state = 226}, - [764] = {.lex_state = 213}, + [754] = {.lex_state = 220}, + [755] = {.lex_state = 220}, + [756] = {.lex_state = 220}, + [757] = {.lex_state = 199}, + [758] = {.lex_state = 199}, + [759] = {.lex_state = 215}, + [760] = {.lex_state = 215}, + [761] = {.lex_state = 223}, + [762] = {.lex_state = 215}, + [763] = {.lex_state = 154}, + [764] = {.lex_state = 199}, [765] = {.lex_state = 154}, - [766] = {.lex_state = 162}, - [767] = {.lex_state = 162}, - [768] = {.lex_state = 154}, - [769] = {.lex_state = 154}, - [770] = {.lex_state = 154}, - [771] = {.lex_state = 213}, - [772] = {.lex_state = 213}, - [773] = {.lex_state = 154}, - [774] = {.lex_state = 213}, - [775] = {.lex_state = 213}, - [776] = {.lex_state = 213}, - [777] = {.lex_state = 226}, - [778] = {.lex_state = 213}, - [779] = {.lex_state = 213}, - [780] = {.lex_state = 201}, - [781] = {.lex_state = 154}, - [782] = {.lex_state = 213}, - [783] = {.lex_state = 154}, - [784] = {.lex_state = 154}, - [785] = {.lex_state = 213}, - [786] = {.lex_state = 226}, - [787] = {.lex_state = 213}, - [788] = {.lex_state = 211}, - [789] = {.lex_state = 213}, - [790] = {.lex_state = 169}, - [791] = {.lex_state = 213}, - [792] = {.lex_state = 154}, - [793] = {.lex_state = 213}, - [794] = {.lex_state = 213}, - [795] = {.lex_state = 162}, + [766] = {.lex_state = 199}, + [767] = {.lex_state = 215}, + [768] = {.lex_state = 223}, + [769] = {.lex_state = 215}, + [770] = {.lex_state = 215}, + [771] = {.lex_state = 165}, + [772] = {.lex_state = 154}, + [773] = {.lex_state = 215}, + [774] = {.lex_state = 154}, + [775] = {.lex_state = 154}, + [776] = {.lex_state = 199}, + [777] = {.lex_state = 154}, + [778] = {.lex_state = 154}, + [779] = {.lex_state = 215}, + [780] = {.lex_state = 154}, + [781] = {.lex_state = 215}, + [782] = {.lex_state = 199}, + [783] = {.lex_state = 215}, + [784] = {.lex_state = 215}, + [785] = {.lex_state = 215}, + [786] = {.lex_state = 223}, + [787] = {.lex_state = 215}, + [788] = {.lex_state = 213}, + [789] = {.lex_state = 215}, + [790] = {.lex_state = 173}, + [791] = {.lex_state = 154}, + [792] = {.lex_state = 215}, + [793] = {.lex_state = 215}, + [794] = {.lex_state = 199}, + [795] = {.lex_state = 216}, [796] = {.lex_state = 154}, - [797] = {.lex_state = 162}, - [798] = {.lex_state = 154}, - [799] = {.lex_state = 233}, - [800] = {.lex_state = 233}, - [801] = {.lex_state = 222}, - [802] = {.lex_state = 233}, - [803] = {.lex_state = 234}, - [804] = {.lex_state = 222}, - [805] = {.lex_state = 162}, - [806] = {.lex_state = 162}, - [807] = {.lex_state = 235}, - [808] = {.lex_state = 154}, - [809] = {.lex_state = 154}, - [810] = {.lex_state = 162}, + [797] = {.lex_state = 216}, + [798] = {.lex_state = 216}, + [799] = {.lex_state = 216}, + [800] = {.lex_state = 216}, + [801] = {.lex_state = 216}, + [802] = {.lex_state = 216}, + [803] = {.lex_state = 216}, + [804] = {.lex_state = 216}, + [805] = {.lex_state = 216}, + [806] = {.lex_state = 216}, + [807] = {.lex_state = 216}, + [808] = {.lex_state = 199}, + [809] = {.lex_state = 240}, + [810] = {.lex_state = 154}, [811] = {.lex_state = 154}, [812] = {.lex_state = 154}, [813] = {.lex_state = 154}, [814] = {.lex_state = 154}, [815] = {.lex_state = 154}, [816] = {.lex_state = 154}, - [817] = {.lex_state = 154}, - [818] = {.lex_state = 162}, - [819] = {.lex_state = 154}, + [817] = {.lex_state = 241}, + [818] = {.lex_state = 154}, + [819] = {.lex_state = 212}, [820] = {.lex_state = 154}, - [821] = {.lex_state = 239}, - [822] = {.lex_state = 189}, - [823] = {.lex_state = 214}, - [824] = {.lex_state = 154}, - [825] = {.lex_state = 214}, - [826] = {.lex_state = 235}, - [827] = {.lex_state = 154}, - [828] = {.lex_state = 162}, - [829] = {.lex_state = 210}, - [830] = {.lex_state = 162}, - [831] = {.lex_state = 162}, - [832] = {.lex_state = 162}, - [833] = {.lex_state = 162}, - [834] = {.lex_state = 162}, - [835] = {.lex_state = 162}, - [836] = {.lex_state = 162}, - [837] = {.lex_state = 162}, - [838] = {.lex_state = 162}, - [839] = {.lex_state = 162}, - [840] = {.lex_state = 162}, - [841] = {.lex_state = 154}, - [842] = {.lex_state = 154}, - [843] = {.lex_state = 154}, + [821] = {.lex_state = 154}, + [822] = {.lex_state = 162}, + [823] = {.lex_state = 217}, + [824] = {.lex_state = 241}, + [825] = {.lex_state = 241}, + [826] = {.lex_state = 216}, + [827] = {.lex_state = 216}, + [828] = {.lex_state = 230}, + [829] = {.lex_state = 198}, + [830] = {.lex_state = 216}, + [831] = {.lex_state = 216}, + [832] = {.lex_state = 216}, + [833] = {.lex_state = 216}, + [834] = {.lex_state = 216}, + [835] = {.lex_state = 216}, + [836] = {.lex_state = 230}, + [837] = {.lex_state = 216}, + [838] = {.lex_state = 216}, + [839] = {.lex_state = 216}, + [840] = {.lex_state = 232}, + [841] = {.lex_state = 232}, + [842] = {.lex_state = 234}, + [843] = {.lex_state = 232}, [844] = {.lex_state = 154}, - [845] = {.lex_state = 240}, - [846] = {.lex_state = 169}, - [847] = {.lex_state = 187}, - [848] = {.lex_state = 215}, - [849] = {.lex_state = 187}, - [850] = {.lex_state = 154}, - [851] = {.lex_state = 226}, - [852] = {.lex_state = 162}, - [853] = {.lex_state = 236}, - [854] = {.lex_state = 215}, - [855] = {.lex_state = 215}, - [856] = {.lex_state = 226}, - [857] = {.lex_state = 236}, - [858] = {.lex_state = 211}, - [859] = {.lex_state = 215}, - [860] = {.lex_state = 169}, - [861] = {.lex_state = 162}, - [862] = {.lex_state = 162}, + [845] = {.lex_state = 199}, + [846] = {.lex_state = 233}, + [847] = {.lex_state = 154}, + [848] = {.lex_state = 233}, + [849] = {.lex_state = 199}, + [850] = {.lex_state = 232}, + [851] = {.lex_state = 233}, + [852] = {.lex_state = 232}, + [853] = {.lex_state = 234}, + [854] = {.lex_state = 199}, + [855] = {.lex_state = 154}, + [856] = {.lex_state = 216}, + [857] = {.lex_state = 219}, + [858] = {.lex_state = 199}, + [859] = {.lex_state = 199}, + [860] = {.lex_state = 154}, + [861] = {.lex_state = 199}, + [862] = {.lex_state = 154}, [863] = {.lex_state = 154}, - [864] = {.lex_state = 210}, - [865] = {.lex_state = 162}, - [866] = {.lex_state = 189}, + [864] = {.lex_state = 154}, + [865] = {.lex_state = 154}, + [866] = {.lex_state = 154}, [867] = {.lex_state = 154}, - [868] = {.lex_state = 222}, + [868] = {.lex_state = 199}, [869] = {.lex_state = 154}, - [870] = {.lex_state = 215}, + [870] = {.lex_state = 199}, [871] = {.lex_state = 154}, - [872] = {.lex_state = 189}, - [873] = {.lex_state = 162}, - [874] = {.lex_state = 219}, - [875] = {.lex_state = 162}, + [872] = {.lex_state = 154}, + [873] = {.lex_state = 154}, + [874] = {.lex_state = 154}, + [875] = {.lex_state = 154}, [876] = {.lex_state = 154}, [877] = {.lex_state = 154}, - [878] = {.lex_state = 154}, - [879] = {.lex_state = 154}, - [880] = {.lex_state = 154}, + [878] = {.lex_state = 241}, + [879] = {.lex_state = 198}, + [880] = {.lex_state = 217}, [881] = {.lex_state = 154}, - [882] = {.lex_state = 220}, - [883] = {.lex_state = 169}, - [884] = {.lex_state = 210}, - [885] = {.lex_state = 154}, - [886] = {.lex_state = 219}, - [887] = {.lex_state = 162}, - [888] = {.lex_state = 154}, - [889] = {.lex_state = 154}, - [890] = {.lex_state = 154}, - [891] = {.lex_state = 154}, - [892] = {.lex_state = 154}, - [893] = {.lex_state = 154}, - [894] = {.lex_state = 210}, - [895] = {.lex_state = 209}, - [896] = {.lex_state = 210}, - [897] = {.lex_state = 154}, - [898] = {.lex_state = 162}, - [899] = {.lex_state = 210}, - [900] = {.lex_state = 210}, - [901] = {.lex_state = 154}, - [902] = {.lex_state = 162}, - [903] = {.lex_state = 162}, + [882] = {.lex_state = 217}, + [883] = {.lex_state = 199}, + [884] = {.lex_state = 154}, + [885] = {.lex_state = 216}, + [886] = {.lex_state = 199}, + [887] = {.lex_state = 199}, + [888] = {.lex_state = 199}, + [889] = {.lex_state = 199}, + [890] = {.lex_state = 199}, + [891] = {.lex_state = 199}, + [892] = {.lex_state = 199}, + [893] = {.lex_state = 199}, + [894] = {.lex_state = 199}, + [895] = {.lex_state = 199}, + [896] = {.lex_state = 199}, + [897] = {.lex_state = 217}, + [898] = {.lex_state = 154}, + [899] = {.lex_state = 230}, + [900] = {.lex_state = 173}, + [901] = {.lex_state = 216}, + [902] = {.lex_state = 154}, + [903] = {.lex_state = 216}, [904] = {.lex_state = 154}, - [905] = {.lex_state = 154}, - [906] = {.lex_state = 154}, + [905] = {.lex_state = 234}, + [906] = {.lex_state = 234}, [907] = {.lex_state = 154}, [908] = {.lex_state = 154}, [909] = {.lex_state = 154}, @@ -6746,59123 +6811,59806 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [912] = {.lex_state = 154}, [913] = {.lex_state = 154}, [914] = {.lex_state = 154}, - [915] = {.lex_state = 162}, - [916] = {.lex_state = 162}, - [917] = {.lex_state = 162}, - [918] = {.lex_state = 162}, - [919] = {.lex_state = 162}, - [920] = {.lex_state = 162}, - [921] = {.lex_state = 162}, - [922] = {.lex_state = 162}, - [923] = {.lex_state = 162}, - [924] = {.lex_state = 162}, - [925] = {.lex_state = 162}, - [926] = {.lex_state = 162}, - [927] = {.lex_state = 154}, + [915] = {.lex_state = 154}, + [916] = {.lex_state = 154}, + [917] = {.lex_state = 154}, + [918] = {.lex_state = 234}, + [919] = {.lex_state = 154}, + [920] = {.lex_state = 216}, + [921] = {.lex_state = 234}, + [922] = {.lex_state = 234}, + [923] = {.lex_state = 234}, + [924] = {.lex_state = 234}, + [925] = {.lex_state = 234}, + [926] = {.lex_state = 234}, + [927] = {.lex_state = 234}, [928] = {.lex_state = 234}, - [929] = {.lex_state = 210}, - [930] = {.lex_state = 210}, - [931] = {.lex_state = 154}, - [932] = {.lex_state = 234}, - [933] = {.lex_state = 234}, - [934] = {.lex_state = 154}, - [935] = {.lex_state = 154}, + [929] = {.lex_state = 234}, + [930] = {.lex_state = 234}, + [931] = {.lex_state = 199}, + [932] = {.lex_state = 216}, + [933] = {.lex_state = 212}, + [934] = {.lex_state = 216}, + [935] = {.lex_state = 216}, [936] = {.lex_state = 154}, - [937] = {.lex_state = 154}, - [938] = {.lex_state = 154}, + [937] = {.lex_state = 199}, + [938] = {.lex_state = 199}, [939] = {.lex_state = 154}, [940] = {.lex_state = 154}, [941] = {.lex_state = 154}, [942] = {.lex_state = 154}, [943] = {.lex_state = 154}, [944] = {.lex_state = 154}, - [945] = {.lex_state = 234}, - [946] = {.lex_state = 234}, - [947] = {.lex_state = 234}, - [948] = {.lex_state = 234}, - [949] = {.lex_state = 234}, - [950] = {.lex_state = 234}, - [951] = {.lex_state = 162}, - [952] = {.lex_state = 234}, - [953] = {.lex_state = 234}, - [954] = {.lex_state = 234}, - [955] = {.lex_state = 234}, - [956] = {.lex_state = 233}, - [957] = {.lex_state = 222}, - [958] = {.lex_state = 234}, - [959] = {.lex_state = 238}, - [960] = {.lex_state = 154}, - [961] = {.lex_state = 210}, - [962] = {.lex_state = 210}, - [963] = {.lex_state = 154}, - [964] = {.lex_state = 209}, - [965] = {.lex_state = 154}, - [966] = {.lex_state = 239}, - [967] = {.lex_state = 234}, - [968] = {.lex_state = 154}, - [969] = {.lex_state = 154}, - [970] = {.lex_state = 154}, + [945] = {.lex_state = 154}, + [946] = {.lex_state = 154}, + [947] = {.lex_state = 154}, + [948] = {.lex_state = 154}, + [949] = {.lex_state = 154}, + [950] = {.lex_state = 199}, + [951] = {.lex_state = 154}, + [952] = {.lex_state = 216}, + [953] = {.lex_state = 199}, + [954] = {.lex_state = 199}, + [955] = {.lex_state = 199}, + [956] = {.lex_state = 199}, + [957] = {.lex_state = 199}, + [958] = {.lex_state = 199}, + [959] = {.lex_state = 199}, + [960] = {.lex_state = 199}, + [961] = {.lex_state = 199}, + [962] = {.lex_state = 199}, + [963] = {.lex_state = 199}, + [964] = {.lex_state = 199}, + [965] = {.lex_state = 216}, + [966] = {.lex_state = 216}, + [967] = {.lex_state = 233}, + [968] = {.lex_state = 232}, + [969] = {.lex_state = 234}, + [970] = {.lex_state = 199}, [971] = {.lex_state = 154}, - [972] = {.lex_state = 154}, - [973] = {.lex_state = 239}, - [974] = {.lex_state = 162}, - [975] = {.lex_state = 239}, + [972] = {.lex_state = 216}, + [973] = {.lex_state = 219}, + [974] = {.lex_state = 199}, + [975] = {.lex_state = 154}, [976] = {.lex_state = 154}, - [977] = {.lex_state = 154}, - [978] = {.lex_state = 154}, - [979] = {.lex_state = 214}, - [980] = {.lex_state = 154}, - [981] = {.lex_state = 154}, + [977] = {.lex_state = 199}, + [978] = {.lex_state = 235}, + [979] = {.lex_state = 154}, + [980] = {.lex_state = 173}, + [981] = {.lex_state = 191}, [982] = {.lex_state = 154}, - [983] = {.lex_state = 154}, - [984] = {.lex_state = 154}, - [985] = {.lex_state = 154}, - [986] = {.lex_state = 154}, - [987] = {.lex_state = 154}, - [988] = {.lex_state = 214}, - [989] = {.lex_state = 154}, - [990] = {.lex_state = 162}, - [991] = {.lex_state = 210}, - [992] = {.lex_state = 189}, - [993] = {.lex_state = 210}, - [994] = {.lex_state = 210}, - [995] = {.lex_state = 210}, - [996] = {.lex_state = 210}, - [997] = {.lex_state = 210}, - [998] = {.lex_state = 210}, - [999] = {.lex_state = 210}, - [1000] = {.lex_state = 222}, - [1001] = {.lex_state = 234}, + [983] = {.lex_state = 238}, + [984] = {.lex_state = 199}, + [985] = {.lex_state = 235}, + [986] = {.lex_state = 213}, + [987] = {.lex_state = 235}, + [988] = {.lex_state = 235}, + [989] = {.lex_state = 218}, + [990] = {.lex_state = 209}, + [991] = {.lex_state = 235}, + [992] = {.lex_state = 223}, + [993] = {.lex_state = 235}, + [994] = {.lex_state = 154}, + [995] = {.lex_state = 199}, + [996] = {.lex_state = 209}, + [997] = {.lex_state = 223}, + [998] = {.lex_state = 209}, + [999] = {.lex_state = 209}, + [1000] = {.lex_state = 213}, + [1001] = {.lex_state = 198}, [1002] = {.lex_state = 154}, - [1003] = {.lex_state = 154}, - [1004] = {.lex_state = 210}, - [1005] = {.lex_state = 210}, - [1006] = {.lex_state = 219}, - [1007] = {.lex_state = 219}, - [1008] = {.lex_state = 162}, - [1009] = {.lex_state = 154}, - [1010] = {.lex_state = 162}, - [1011] = {.lex_state = 223}, + [1003] = {.lex_state = 198}, + [1004] = {.lex_state = 199}, + [1005] = {.lex_state = 232}, + [1006] = {.lex_state = 198}, + [1007] = {.lex_state = 232}, + [1008] = {.lex_state = 234}, + [1009] = {.lex_state = 209}, + [1010] = {.lex_state = 199}, + [1011] = {.lex_state = 154}, [1012] = {.lex_state = 154}, - [1013] = {.lex_state = 162}, - [1014] = {.lex_state = 223}, - [1015] = {.lex_state = 223}, - [1016] = {.lex_state = 226}, - [1017] = {.lex_state = 213}, - [1018] = {.lex_state = 154}, - [1019] = {.lex_state = 162}, - [1020] = {.lex_state = 162}, - [1021] = {.lex_state = 154}, - [1022] = {.lex_state = 154}, + [1013] = {.lex_state = 154}, + [1014] = {.lex_state = 199}, + [1015] = {.lex_state = 154}, + [1016] = {.lex_state = 216}, + [1017] = {.lex_state = 219}, + [1018] = {.lex_state = 199}, + [1019] = {.lex_state = 199}, + [1020] = {.lex_state = 154}, + [1021] = {.lex_state = 215}, + [1022] = {.lex_state = 220}, [1023] = {.lex_state = 154}, - [1024] = {.lex_state = 223}, - [1025] = {.lex_state = 223}, - [1026] = {.lex_state = 154}, + [1024] = {.lex_state = 220}, + [1025] = {.lex_state = 220}, + [1026] = {.lex_state = 220}, [1027] = {.lex_state = 223}, - [1028] = {.lex_state = 223}, - [1029] = {.lex_state = 223}, - [1030] = {.lex_state = 226}, - [1031] = {.lex_state = 213}, - [1032] = {.lex_state = 223}, - [1033] = {.lex_state = 201}, - [1034] = {.lex_state = 154}, - [1035] = {.lex_state = 223}, - [1036] = {.lex_state = 154}, - [1037] = {.lex_state = 154}, - [1038] = {.lex_state = 223}, - [1039] = {.lex_state = 211}, - [1040] = {.lex_state = 223}, - [1041] = {.lex_state = 169}, - [1042] = {.lex_state = 223}, - [1043] = {.lex_state = 223}, - [1044] = {.lex_state = 223}, - [1045] = {.lex_state = 162}, - [1046] = {.lex_state = 213}, - [1047] = {.lex_state = 226}, - [1048] = {.lex_state = 162}, - [1049] = {.lex_state = 213}, - [1050] = {.lex_state = 162}, - [1051] = {.lex_state = 154}, - [1052] = {.lex_state = 154}, - [1053] = {.lex_state = 154}, - [1054] = {.lex_state = 154}, - [1055] = {.lex_state = 154}, - [1056] = {.lex_state = 213}, - [1057] = {.lex_state = 154}, - [1058] = {.lex_state = 213}, - [1059] = {.lex_state = 226}, - [1060] = {.lex_state = 213}, - [1061] = {.lex_state = 213}, - [1062] = {.lex_state = 154}, - [1063] = {.lex_state = 154}, - [1064] = {.lex_state = 213}, - [1065] = {.lex_state = 226}, - [1066] = {.lex_state = 213}, - [1067] = {.lex_state = 213}, - [1068] = {.lex_state = 211}, - [1069] = {.lex_state = 213}, + [1028] = {.lex_state = 215}, + [1029] = {.lex_state = 154}, + [1030] = {.lex_state = 199}, + [1031] = {.lex_state = 154}, + [1032] = {.lex_state = 199}, + [1033] = {.lex_state = 220}, + [1034] = {.lex_state = 223}, + [1035] = {.lex_state = 215}, + [1036] = {.lex_state = 220}, + [1037] = {.lex_state = 165}, + [1038] = {.lex_state = 154}, + [1039] = {.lex_state = 220}, + [1040] = {.lex_state = 154}, + [1041] = {.lex_state = 154}, + [1042] = {.lex_state = 199}, + [1043] = {.lex_state = 154}, + [1044] = {.lex_state = 154}, + [1045] = {.lex_state = 220}, + [1046] = {.lex_state = 154}, + [1047] = {.lex_state = 220}, + [1048] = {.lex_state = 199}, + [1049] = {.lex_state = 220}, + [1050] = {.lex_state = 220}, + [1051] = {.lex_state = 220}, + [1052] = {.lex_state = 213}, + [1053] = {.lex_state = 220}, + [1054] = {.lex_state = 173}, + [1055] = {.lex_state = 220}, + [1056] = {.lex_state = 220}, + [1057] = {.lex_state = 199}, + [1058] = {.lex_state = 215}, + [1059] = {.lex_state = 223}, + [1060] = {.lex_state = 199}, + [1061] = {.lex_state = 215}, + [1062] = {.lex_state = 199}, + [1063] = {.lex_state = 219}, + [1064] = {.lex_state = 199}, + [1065] = {.lex_state = 154}, + [1066] = {.lex_state = 215}, + [1067] = {.lex_state = 223}, + [1068] = {.lex_state = 215}, + [1069] = {.lex_state = 215}, [1070] = {.lex_state = 154}, - [1071] = {.lex_state = 233}, - [1072] = {.lex_state = 222}, - [1073] = {.lex_state = 234}, - [1074] = {.lex_state = 162}, - [1075] = {.lex_state = 219}, - [1076] = {.lex_state = 162}, + [1071] = {.lex_state = 154}, + [1072] = {.lex_state = 154}, + [1073] = {.lex_state = 154}, + [1074] = {.lex_state = 154}, + [1075] = {.lex_state = 154}, + [1076] = {.lex_state = 215}, [1077] = {.lex_state = 154}, - [1078] = {.lex_state = 154}, - [1079] = {.lex_state = 162}, - [1080] = {.lex_state = 154}, - [1081] = {.lex_state = 154}, - [1082] = {.lex_state = 154}, - [1083] = {.lex_state = 154}, + [1078] = {.lex_state = 223}, + [1079] = {.lex_state = 215}, + [1080] = {.lex_state = 215}, + [1081] = {.lex_state = 213}, + [1082] = {.lex_state = 215}, + [1083] = {.lex_state = 240}, [1084] = {.lex_state = 154}, - [1085] = {.lex_state = 162}, - [1086] = {.lex_state = 162}, - [1087] = {.lex_state = 154}, + [1085] = {.lex_state = 216}, + [1086] = {.lex_state = 234}, + [1087] = {.lex_state = 212}, [1088] = {.lex_state = 154}, [1089] = {.lex_state = 154}, [1090] = {.lex_state = 154}, [1091] = {.lex_state = 154}, - [1092] = {.lex_state = 189}, - [1093] = {.lex_state = 154}, - [1094] = {.lex_state = 235}, - [1095] = {.lex_state = 154}, + [1092] = {.lex_state = 154}, + [1093] = {.lex_state = 241}, + [1094] = {.lex_state = 154}, + [1095] = {.lex_state = 216}, [1096] = {.lex_state = 162}, - [1097] = {.lex_state = 236}, - [1098] = {.lex_state = 154}, - [1099] = {.lex_state = 169}, - [1100] = {.lex_state = 187}, - [1101] = {.lex_state = 154}, - [1102] = {.lex_state = 162}, - [1103] = {.lex_state = 240}, - [1104] = {.lex_state = 236}, - [1105] = {.lex_state = 211}, - [1106] = {.lex_state = 236}, - [1107] = {.lex_state = 236}, - [1108] = {.lex_state = 218}, - [1109] = {.lex_state = 215}, - [1110] = {.lex_state = 236}, - [1111] = {.lex_state = 162}, + [1097] = {.lex_state = 154}, + [1098] = {.lex_state = 241}, + [1099] = {.lex_state = 154}, + [1100] = {.lex_state = 162}, + [1101] = {.lex_state = 237}, + [1102] = {.lex_state = 217}, + [1103] = {.lex_state = 241}, + [1104] = {.lex_state = 154}, + [1105] = {.lex_state = 154}, + [1106] = {.lex_state = 154}, + [1107] = {.lex_state = 154}, + [1108] = {.lex_state = 154}, + [1109] = {.lex_state = 154}, + [1110] = {.lex_state = 154}, + [1111] = {.lex_state = 154}, [1112] = {.lex_state = 154}, - [1113] = {.lex_state = 226}, - [1114] = {.lex_state = 236}, - [1115] = {.lex_state = 215}, - [1116] = {.lex_state = 226}, - [1117] = {.lex_state = 215}, - [1118] = {.lex_state = 215}, - [1119] = {.lex_state = 211}, - [1120] = {.lex_state = 154}, - [1121] = {.lex_state = 189}, - [1122] = {.lex_state = 189}, - [1123] = {.lex_state = 222}, - [1124] = {.lex_state = 189}, - [1125] = {.lex_state = 234}, - [1126] = {.lex_state = 222}, - [1127] = {.lex_state = 162}, - [1128] = {.lex_state = 215}, - [1129] = {.lex_state = 154}, - [1130] = {.lex_state = 162}, - [1131] = {.lex_state = 154}, - [1132] = {.lex_state = 210}, - [1133] = {.lex_state = 219}, - [1134] = {.lex_state = 162}, - [1135] = {.lex_state = 154}, - [1136] = {.lex_state = 162}, - [1137] = {.lex_state = 154}, - [1138] = {.lex_state = 210}, - [1139] = {.lex_state = 169}, - [1140] = {.lex_state = 210}, - [1141] = {.lex_state = 154}, - [1142] = {.lex_state = 210}, - [1143] = {.lex_state = 219}, - [1144] = {.lex_state = 162}, + [1113] = {.lex_state = 154}, + [1114] = {.lex_state = 154}, + [1115] = {.lex_state = 216}, + [1116] = {.lex_state = 198}, + [1117] = {.lex_state = 216}, + [1118] = {.lex_state = 216}, + [1119] = {.lex_state = 216}, + [1120] = {.lex_state = 216}, + [1121] = {.lex_state = 216}, + [1122] = {.lex_state = 216}, + [1123] = {.lex_state = 216}, + [1124] = {.lex_state = 216}, + [1125] = {.lex_state = 216}, + [1126] = {.lex_state = 232}, + [1127] = {.lex_state = 234}, + [1128] = {.lex_state = 154}, + [1129] = {.lex_state = 233}, + [1130] = {.lex_state = 232}, + [1131] = {.lex_state = 234}, + [1132] = {.lex_state = 154}, + [1133] = {.lex_state = 154}, + [1134] = {.lex_state = 216}, + [1135] = {.lex_state = 216}, + [1136] = {.lex_state = 219}, + [1137] = {.lex_state = 199}, + [1138] = {.lex_state = 199}, + [1139] = {.lex_state = 154}, + [1140] = {.lex_state = 219}, + [1141] = {.lex_state = 199}, + [1142] = {.lex_state = 154}, + [1143] = {.lex_state = 154}, + [1144] = {.lex_state = 154}, [1145] = {.lex_state = 154}, - [1146] = {.lex_state = 162}, + [1146] = {.lex_state = 199}, [1147] = {.lex_state = 154}, - [1148] = {.lex_state = 235}, + [1148] = {.lex_state = 154}, [1149] = {.lex_state = 154}, - [1150] = {.lex_state = 162}, - [1151] = {.lex_state = 210}, - [1152] = {.lex_state = 162}, - [1153] = {.lex_state = 162}, - [1154] = {.lex_state = 162}, - [1155] = {.lex_state = 162}, - [1156] = {.lex_state = 162}, - [1157] = {.lex_state = 162}, - [1158] = {.lex_state = 162}, - [1159] = {.lex_state = 162}, - [1160] = {.lex_state = 162}, - [1161] = {.lex_state = 162}, - [1162] = {.lex_state = 162}, - [1163] = {.lex_state = 154}, - [1164] = {.lex_state = 242}, + [1150] = {.lex_state = 199}, + [1151] = {.lex_state = 154}, + [1152] = {.lex_state = 199}, + [1153] = {.lex_state = 154}, + [1154] = {.lex_state = 154}, + [1155] = {.lex_state = 154}, + [1156] = {.lex_state = 198}, + [1157] = {.lex_state = 154}, + [1158] = {.lex_state = 217}, + [1159] = {.lex_state = 154}, + [1160] = {.lex_state = 199}, + [1161] = {.lex_state = 216}, + [1162] = {.lex_state = 173}, + [1163] = {.lex_state = 216}, + [1164] = {.lex_state = 234}, [1165] = {.lex_state = 154}, - [1166] = {.lex_state = 234}, - [1167] = {.lex_state = 210}, + [1166] = {.lex_state = 216}, + [1167] = {.lex_state = 234}, [1168] = {.lex_state = 234}, [1169] = {.lex_state = 234}, [1170] = {.lex_state = 234}, [1171] = {.lex_state = 234}, [1172] = {.lex_state = 234}, [1173] = {.lex_state = 234}, - [1174] = {.lex_state = 162}, + [1174] = {.lex_state = 234}, [1175] = {.lex_state = 234}, [1176] = {.lex_state = 234}, - [1177] = {.lex_state = 234}, - [1178] = {.lex_state = 234}, + [1177] = {.lex_state = 199}, + [1178] = {.lex_state = 242}, [1179] = {.lex_state = 154}, - [1180] = {.lex_state = 233}, - [1181] = {.lex_state = 210}, - [1182] = {.lex_state = 154}, - [1183] = {.lex_state = 239}, - [1184] = {.lex_state = 210}, - [1185] = {.lex_state = 162}, - [1186] = {.lex_state = 210}, - [1187] = {.lex_state = 154}, - [1188] = {.lex_state = 239}, - [1189] = {.lex_state = 239}, - [1190] = {.lex_state = 154}, - [1191] = {.lex_state = 154}, - [1192] = {.lex_state = 154}, - [1193] = {.lex_state = 154}, - [1194] = {.lex_state = 154}, + [1180] = {.lex_state = 199}, + [1181] = {.lex_state = 154}, + [1182] = {.lex_state = 216}, + [1183] = {.lex_state = 199}, + [1184] = {.lex_state = 199}, + [1185] = {.lex_state = 199}, + [1186] = {.lex_state = 199}, + [1187] = {.lex_state = 199}, + [1188] = {.lex_state = 199}, + [1189] = {.lex_state = 199}, + [1190] = {.lex_state = 199}, + [1191] = {.lex_state = 199}, + [1192] = {.lex_state = 199}, + [1193] = {.lex_state = 199}, + [1194] = {.lex_state = 243}, [1195] = {.lex_state = 154}, - [1196] = {.lex_state = 154}, - [1197] = {.lex_state = 154}, + [1196] = {.lex_state = 216}, + [1197] = {.lex_state = 233}, [1198] = {.lex_state = 154}, - [1199] = {.lex_state = 154}, - [1200] = {.lex_state = 154}, - [1201] = {.lex_state = 239}, - [1202] = {.lex_state = 239}, - [1203] = {.lex_state = 239}, - [1204] = {.lex_state = 239}, - [1205] = {.lex_state = 209}, - [1206] = {.lex_state = 239}, - [1207] = {.lex_state = 214}, - [1208] = {.lex_state = 239}, - [1209] = {.lex_state = 239}, - [1210] = {.lex_state = 162}, - [1211] = {.lex_state = 239}, - [1212] = {.lex_state = 239}, - [1213] = {.lex_state = 239}, - [1214] = {.lex_state = 239}, - [1215] = {.lex_state = 214}, - [1216] = {.lex_state = 214}, - [1217] = {.lex_state = 239}, - [1218] = {.lex_state = 214}, - [1219] = {.lex_state = 210}, - [1220] = {.lex_state = 210}, - [1221] = {.lex_state = 210}, - [1222] = {.lex_state = 154}, - [1223] = {.lex_state = 154}, - [1224] = {.lex_state = 210}, - [1225] = {.lex_state = 210}, - [1226] = {.lex_state = 154}, - [1227] = {.lex_state = 210}, - [1228] = {.lex_state = 219}, - [1229] = {.lex_state = 162}, - [1230] = {.lex_state = 219}, - [1231] = {.lex_state = 162}, - [1232] = {.lex_state = 154}, - [1233] = {.lex_state = 223}, - [1234] = {.lex_state = 226}, - [1235] = {.lex_state = 162}, - [1236] = {.lex_state = 223}, - [1237] = {.lex_state = 162}, - [1238] = {.lex_state = 154}, - [1239] = {.lex_state = 154}, + [1199] = {.lex_state = 216}, + [1200] = {.lex_state = 216}, + [1201] = {.lex_state = 219}, + [1202] = {.lex_state = 154}, + [1203] = {.lex_state = 219}, + [1204] = {.lex_state = 199}, + [1205] = {.lex_state = 154}, + [1206] = {.lex_state = 235}, + [1207] = {.lex_state = 235}, + [1208] = {.lex_state = 223}, + [1209] = {.lex_state = 235}, + [1210] = {.lex_state = 238}, + [1211] = {.lex_state = 213}, + [1212] = {.lex_state = 235}, + [1213] = {.lex_state = 218}, + [1214] = {.lex_state = 238}, + [1215] = {.lex_state = 238}, + [1216] = {.lex_state = 154}, + [1217] = {.lex_state = 199}, + [1218] = {.lex_state = 235}, + [1219] = {.lex_state = 235}, + [1220] = {.lex_state = 235}, + [1221] = {.lex_state = 223}, + [1222] = {.lex_state = 235}, + [1223] = {.lex_state = 223}, + [1224] = {.lex_state = 213}, + [1225] = {.lex_state = 235}, + [1226] = {.lex_state = 173}, + [1227] = {.lex_state = 209}, + [1228] = {.lex_state = 235}, + [1229] = {.lex_state = 199}, + [1230] = {.lex_state = 154}, + [1231] = {.lex_state = 209}, + [1232] = {.lex_state = 209}, + [1233] = {.lex_state = 198}, + [1234] = {.lex_state = 232}, + [1235] = {.lex_state = 234}, + [1236] = {.lex_state = 209}, + [1237] = {.lex_state = 154}, + [1238] = {.lex_state = 219}, + [1239] = {.lex_state = 199}, [1240] = {.lex_state = 154}, [1241] = {.lex_state = 154}, - [1242] = {.lex_state = 154}, - [1243] = {.lex_state = 223}, - [1244] = {.lex_state = 154}, - [1245] = {.lex_state = 223}, - [1246] = {.lex_state = 226}, - [1247] = {.lex_state = 223}, - [1248] = {.lex_state = 223}, - [1249] = {.lex_state = 154}, - [1250] = {.lex_state = 154}, - [1251] = {.lex_state = 223}, - [1252] = {.lex_state = 223}, - [1253] = {.lex_state = 223}, - [1254] = {.lex_state = 211}, - [1255] = {.lex_state = 223}, - [1256] = {.lex_state = 213}, - [1257] = {.lex_state = 213}, - [1258] = {.lex_state = 162}, - [1259] = {.lex_state = 154}, - [1260] = {.lex_state = 162}, - [1261] = {.lex_state = 213}, - [1262] = {.lex_state = 213}, - [1263] = {.lex_state = 213}, - [1264] = {.lex_state = 213}, - [1265] = {.lex_state = 213}, - [1266] = {.lex_state = 210}, - [1267] = {.lex_state = 210}, - [1268] = {.lex_state = 213}, - [1269] = {.lex_state = 233}, - [1270] = {.lex_state = 154}, - [1271] = {.lex_state = 210}, - [1272] = {.lex_state = 219}, - [1273] = {.lex_state = 162}, - [1274] = {.lex_state = 154}, - [1275] = {.lex_state = 154}, + [1242] = {.lex_state = 216}, + [1243] = {.lex_state = 216}, + [1244] = {.lex_state = 219}, + [1245] = {.lex_state = 216}, + [1246] = {.lex_state = 216}, + [1247] = {.lex_state = 154}, + [1248] = {.lex_state = 220}, + [1249] = {.lex_state = 220}, + [1250] = {.lex_state = 223}, + [1251] = {.lex_state = 199}, + [1252] = {.lex_state = 220}, + [1253] = {.lex_state = 199}, + [1254] = {.lex_state = 219}, + [1255] = {.lex_state = 199}, + [1256] = {.lex_state = 154}, + [1257] = {.lex_state = 220}, + [1258] = {.lex_state = 223}, + [1259] = {.lex_state = 220}, + [1260] = {.lex_state = 220}, + [1261] = {.lex_state = 154}, + [1262] = {.lex_state = 154}, + [1263] = {.lex_state = 154}, + [1264] = {.lex_state = 154}, + [1265] = {.lex_state = 154}, + [1266] = {.lex_state = 154}, + [1267] = {.lex_state = 220}, + [1268] = {.lex_state = 154}, + [1269] = {.lex_state = 220}, + [1270] = {.lex_state = 220}, + [1271] = {.lex_state = 213}, + [1272] = {.lex_state = 220}, + [1273] = {.lex_state = 215}, + [1274] = {.lex_state = 215}, + [1275] = {.lex_state = 199}, [1276] = {.lex_state = 154}, - [1277] = {.lex_state = 154}, - [1278] = {.lex_state = 154}, - [1279] = {.lex_state = 219}, - [1280] = {.lex_state = 162}, - [1281] = {.lex_state = 154}, - [1282] = {.lex_state = 154}, + [1277] = {.lex_state = 216}, + [1278] = {.lex_state = 219}, + [1279] = {.lex_state = 199}, + [1280] = {.lex_state = 215}, + [1281] = {.lex_state = 215}, + [1282] = {.lex_state = 215}, [1283] = {.lex_state = 154}, - [1284] = {.lex_state = 154}, - [1285] = {.lex_state = 154}, - [1286] = {.lex_state = 154}, - [1287] = {.lex_state = 154}, - [1288] = {.lex_state = 162}, - [1289] = {.lex_state = 236}, - [1290] = {.lex_state = 226}, - [1291] = {.lex_state = 236}, - [1292] = {.lex_state = 236}, - [1293] = {.lex_state = 240}, - [1294] = {.lex_state = 211}, - [1295] = {.lex_state = 236}, - [1296] = {.lex_state = 218}, - [1297] = {.lex_state = 240}, - [1298] = {.lex_state = 162}, + [1284] = {.lex_state = 199}, + [1285] = {.lex_state = 215}, + [1286] = {.lex_state = 215}, + [1287] = {.lex_state = 215}, + [1288] = {.lex_state = 216}, + [1289] = {.lex_state = 162}, + [1290] = {.lex_state = 216}, + [1291] = {.lex_state = 154}, + [1292] = {.lex_state = 241}, + [1293] = {.lex_state = 241}, + [1294] = {.lex_state = 154}, + [1295] = {.lex_state = 154}, + [1296] = {.lex_state = 154}, + [1297] = {.lex_state = 154}, + [1298] = {.lex_state = 154}, [1299] = {.lex_state = 154}, - [1300] = {.lex_state = 240}, - [1301] = {.lex_state = 236}, - [1302] = {.lex_state = 236}, - [1303] = {.lex_state = 226}, - [1304] = {.lex_state = 236}, - [1305] = {.lex_state = 226}, - [1306] = {.lex_state = 236}, - [1307] = {.lex_state = 211}, - [1308] = {.lex_state = 236}, - [1309] = {.lex_state = 169}, - [1310] = {.lex_state = 236}, - [1311] = {.lex_state = 154}, - [1312] = {.lex_state = 162}, - [1313] = {.lex_state = 215}, - [1314] = {.lex_state = 215}, - [1315] = {.lex_state = 215}, - [1316] = {.lex_state = 189}, - [1317] = {.lex_state = 222}, - [1318] = {.lex_state = 234}, - [1319] = {.lex_state = 215}, - [1320] = {.lex_state = 154}, - [1321] = {.lex_state = 210}, - [1322] = {.lex_state = 210}, - [1323] = {.lex_state = 219}, - [1324] = {.lex_state = 219}, - [1325] = {.lex_state = 162}, - [1326] = {.lex_state = 154}, - [1327] = {.lex_state = 154}, - [1328] = {.lex_state = 154}, - [1329] = {.lex_state = 210}, - [1330] = {.lex_state = 210}, - [1331] = {.lex_state = 219}, - [1332] = {.lex_state = 219}, - [1333] = {.lex_state = 162}, - [1334] = {.lex_state = 154}, - [1335] = {.lex_state = 154}, - [1336] = {.lex_state = 235}, + [1300] = {.lex_state = 154}, + [1301] = {.lex_state = 154}, + [1302] = {.lex_state = 154}, + [1303] = {.lex_state = 154}, + [1304] = {.lex_state = 154}, + [1305] = {.lex_state = 241}, + [1306] = {.lex_state = 154}, + [1307] = {.lex_state = 216}, + [1308] = {.lex_state = 217}, + [1309] = {.lex_state = 241}, + [1310] = {.lex_state = 212}, + [1311] = {.lex_state = 217}, + [1312] = {.lex_state = 241}, + [1313] = {.lex_state = 237}, + [1314] = {.lex_state = 217}, + [1315] = {.lex_state = 241}, + [1316] = {.lex_state = 241}, + [1317] = {.lex_state = 241}, + [1318] = {.lex_state = 241}, + [1319] = {.lex_state = 241}, + [1320] = {.lex_state = 241}, + [1321] = {.lex_state = 241}, + [1322] = {.lex_state = 241}, + [1323] = {.lex_state = 241}, + [1324] = {.lex_state = 241}, + [1325] = {.lex_state = 199}, + [1326] = {.lex_state = 216}, + [1327] = {.lex_state = 216}, + [1328] = {.lex_state = 216}, + [1329] = {.lex_state = 216}, + [1330] = {.lex_state = 216}, + [1331] = {.lex_state = 233}, + [1332] = {.lex_state = 154}, + [1333] = {.lex_state = 154}, + [1334] = {.lex_state = 216}, + [1335] = {.lex_state = 216}, + [1336] = {.lex_state = 199}, [1337] = {.lex_state = 154}, - [1338] = {.lex_state = 162}, - [1339] = {.lex_state = 242}, - [1340] = {.lex_state = 154}, - [1341] = {.lex_state = 234}, - [1342] = {.lex_state = 243}, + [1338] = {.lex_state = 216}, + [1339] = {.lex_state = 219}, + [1340] = {.lex_state = 199}, + [1341] = {.lex_state = 154}, + [1342] = {.lex_state = 154}, [1343] = {.lex_state = 154}, - [1344] = {.lex_state = 239}, - [1345] = {.lex_state = 210}, - [1346] = {.lex_state = 239}, - [1347] = {.lex_state = 239}, - [1348] = {.lex_state = 239}, - [1349] = {.lex_state = 239}, - [1350] = {.lex_state = 239}, - [1351] = {.lex_state = 239}, - [1352] = {.lex_state = 162}, - [1353] = {.lex_state = 239}, - [1354] = {.lex_state = 239}, - [1355] = {.lex_state = 239}, - [1356] = {.lex_state = 239}, + [1344] = {.lex_state = 154}, + [1345] = {.lex_state = 154}, + [1346] = {.lex_state = 154}, + [1347] = {.lex_state = 219}, + [1348] = {.lex_state = 199}, + [1349] = {.lex_state = 154}, + [1350] = {.lex_state = 154}, + [1351] = {.lex_state = 154}, + [1352] = {.lex_state = 154}, + [1353] = {.lex_state = 154}, + [1354] = {.lex_state = 154}, + [1355] = {.lex_state = 199}, + [1356] = {.lex_state = 242}, [1357] = {.lex_state = 154}, - [1358] = {.lex_state = 209}, - [1359] = {.lex_state = 167}, - [1360] = {.lex_state = 210}, - [1361] = {.lex_state = 154}, + [1358] = {.lex_state = 234}, + [1359] = {.lex_state = 243}, + [1360] = {.lex_state = 154}, + [1361] = {.lex_state = 199}, [1362] = {.lex_state = 154}, - [1363] = {.lex_state = 210}, - [1364] = {.lex_state = 213}, + [1363] = {.lex_state = 216}, + [1364] = {.lex_state = 216}, [1365] = {.lex_state = 154}, - [1366] = {.lex_state = 210}, - [1367] = {.lex_state = 210}, - [1368] = {.lex_state = 219}, - [1369] = {.lex_state = 154}, - [1370] = {.lex_state = 210}, - [1371] = {.lex_state = 219}, - [1372] = {.lex_state = 162}, + [1366] = {.lex_state = 216}, + [1367] = {.lex_state = 219}, + [1368] = {.lex_state = 199}, + [1369] = {.lex_state = 235}, + [1370] = {.lex_state = 223}, + [1371] = {.lex_state = 238}, + [1372] = {.lex_state = 235}, [1373] = {.lex_state = 223}, - [1374] = {.lex_state = 223}, - [1375] = {.lex_state = 162}, - [1376] = {.lex_state = 154}, - [1377] = {.lex_state = 162}, - [1378] = {.lex_state = 223}, - [1379] = {.lex_state = 223}, - [1380] = {.lex_state = 223}, - [1381] = {.lex_state = 223}, - [1382] = {.lex_state = 223}, - [1383] = {.lex_state = 210}, - [1384] = {.lex_state = 210}, + [1374] = {.lex_state = 238}, + [1375] = {.lex_state = 238}, + [1376] = {.lex_state = 235}, + [1377] = {.lex_state = 223}, + [1378] = {.lex_state = 213}, + [1379] = {.lex_state = 238}, + [1380] = {.lex_state = 173}, + [1381] = {.lex_state = 238}, + [1382] = {.lex_state = 199}, + [1383] = {.lex_state = 154}, + [1384] = {.lex_state = 235}, [1385] = {.lex_state = 223}, - [1386] = {.lex_state = 213}, - [1387] = {.lex_state = 219}, - [1388] = {.lex_state = 162}, - [1389] = {.lex_state = 154}, - [1390] = {.lex_state = 154}, - [1391] = {.lex_state = 213}, - [1392] = {.lex_state = 154}, - [1393] = {.lex_state = 210}, - [1394] = {.lex_state = 210}, + [1386] = {.lex_state = 223}, + [1387] = {.lex_state = 235}, + [1388] = {.lex_state = 235}, + [1389] = {.lex_state = 213}, + [1390] = {.lex_state = 235}, + [1391] = {.lex_state = 154}, + [1392] = {.lex_state = 198}, + [1393] = {.lex_state = 154}, + [1394] = {.lex_state = 216}, [1395] = {.lex_state = 219}, - [1396] = {.lex_state = 162}, + [1396] = {.lex_state = 199}, [1397] = {.lex_state = 154}, - [1398] = {.lex_state = 162}, - [1399] = {.lex_state = 162}, - [1400] = {.lex_state = 154}, - [1401] = {.lex_state = 154}, - [1402] = {.lex_state = 154}, - [1403] = {.lex_state = 154}, - [1404] = {.lex_state = 154}, - [1405] = {.lex_state = 210}, - [1406] = {.lex_state = 219}, - [1407] = {.lex_state = 162}, - [1408] = {.lex_state = 154}, - [1409] = {.lex_state = 162}, - [1410] = {.lex_state = 154}, - [1411] = {.lex_state = 236}, - [1412] = {.lex_state = 226}, - [1413] = {.lex_state = 240}, - [1414] = {.lex_state = 226}, - [1415] = {.lex_state = 236}, - [1416] = {.lex_state = 240}, - [1417] = {.lex_state = 240}, - [1418] = {.lex_state = 226}, - [1419] = {.lex_state = 236}, - [1420] = {.lex_state = 211}, - [1421] = {.lex_state = 240}, - [1422] = {.lex_state = 169}, - [1423] = {.lex_state = 240}, + [1398] = {.lex_state = 216}, + [1399] = {.lex_state = 216}, + [1400] = {.lex_state = 215}, + [1401] = {.lex_state = 216}, + [1402] = {.lex_state = 216}, + [1403] = {.lex_state = 220}, + [1404] = {.lex_state = 220}, + [1405] = {.lex_state = 199}, + [1406] = {.lex_state = 154}, + [1407] = {.lex_state = 216}, + [1408] = {.lex_state = 219}, + [1409] = {.lex_state = 199}, + [1410] = {.lex_state = 220}, + [1411] = {.lex_state = 220}, + [1412] = {.lex_state = 220}, + [1413] = {.lex_state = 154}, + [1414] = {.lex_state = 199}, + [1415] = {.lex_state = 220}, + [1416] = {.lex_state = 220}, + [1417] = {.lex_state = 220}, + [1418] = {.lex_state = 215}, + [1419] = {.lex_state = 215}, + [1420] = {.lex_state = 154}, + [1421] = {.lex_state = 216}, + [1422] = {.lex_state = 216}, + [1423] = {.lex_state = 219}, [1424] = {.lex_state = 154}, - [1425] = {.lex_state = 162}, - [1426] = {.lex_state = 236}, - [1427] = {.lex_state = 226}, - [1428] = {.lex_state = 226}, - [1429] = {.lex_state = 236}, - [1430] = {.lex_state = 236}, - [1431] = {.lex_state = 211}, - [1432] = {.lex_state = 236}, - [1433] = {.lex_state = 154}, - [1434] = {.lex_state = 189}, - [1435] = {.lex_state = 154}, - [1436] = {.lex_state = 210}, - [1437] = {.lex_state = 210}, - [1438] = {.lex_state = 154}, - [1439] = {.lex_state = 210}, - [1440] = {.lex_state = 219}, - [1441] = {.lex_state = 162}, - [1442] = {.lex_state = 154}, - [1443] = {.lex_state = 210}, - [1444] = {.lex_state = 210}, + [1425] = {.lex_state = 219}, + [1426] = {.lex_state = 199}, + [1427] = {.lex_state = 154}, + [1428] = {.lex_state = 241}, + [1429] = {.lex_state = 154}, + [1430] = {.lex_state = 216}, + [1431] = {.lex_state = 241}, + [1432] = {.lex_state = 241}, + [1433] = {.lex_state = 241}, + [1434] = {.lex_state = 241}, + [1435] = {.lex_state = 241}, + [1436] = {.lex_state = 241}, + [1437] = {.lex_state = 241}, + [1438] = {.lex_state = 241}, + [1439] = {.lex_state = 241}, + [1440] = {.lex_state = 241}, + [1441] = {.lex_state = 199}, + [1442] = {.lex_state = 217}, + [1443] = {.lex_state = 212}, + [1444] = {.lex_state = 162}, [1445] = {.lex_state = 154}, - [1446] = {.lex_state = 210}, - [1447] = {.lex_state = 219}, - [1448] = {.lex_state = 162}, - [1449] = {.lex_state = 162}, - [1450] = {.lex_state = 234}, - [1451] = {.lex_state = 243}, - [1452] = {.lex_state = 154}, - [1453] = {.lex_state = 239}, - [1454] = {.lex_state = 154}, + [1446] = {.lex_state = 216}, + [1447] = {.lex_state = 216}, + [1448] = {.lex_state = 154}, + [1449] = {.lex_state = 154}, + [1450] = {.lex_state = 216}, + [1451] = {.lex_state = 154}, + [1452] = {.lex_state = 216}, + [1453] = {.lex_state = 216}, + [1454] = {.lex_state = 219}, [1455] = {.lex_state = 154}, - [1456] = {.lex_state = 213}, + [1456] = {.lex_state = 199}, [1457] = {.lex_state = 154}, - [1458] = {.lex_state = 210}, - [1459] = {.lex_state = 210}, - [1460] = {.lex_state = 223}, + [1458] = {.lex_state = 199}, + [1459] = {.lex_state = 154}, + [1460] = {.lex_state = 154}, [1461] = {.lex_state = 154}, - [1462] = {.lex_state = 210}, - [1463] = {.lex_state = 210}, - [1464] = {.lex_state = 219}, - [1465] = {.lex_state = 223}, - [1466] = {.lex_state = 219}, - [1467] = {.lex_state = 162}, + [1462] = {.lex_state = 199}, + [1463] = {.lex_state = 154}, + [1464] = {.lex_state = 216}, + [1465] = {.lex_state = 219}, + [1466] = {.lex_state = 199}, + [1467] = {.lex_state = 154}, [1468] = {.lex_state = 154}, - [1469] = {.lex_state = 154}, - [1470] = {.lex_state = 223}, - [1471] = {.lex_state = 154}, - [1472] = {.lex_state = 210}, - [1473] = {.lex_state = 219}, - [1474] = {.lex_state = 162}, - [1475] = {.lex_state = 154}, - [1476] = {.lex_state = 210}, - [1477] = {.lex_state = 210}, - [1478] = {.lex_state = 219}, - [1479] = {.lex_state = 162}, - [1480] = {.lex_state = 154}, - [1481] = {.lex_state = 154}, - [1482] = {.lex_state = 154}, - [1483] = {.lex_state = 154}, - [1484] = {.lex_state = 154}, - [1485] = {.lex_state = 154}, - [1486] = {.lex_state = 154}, - [1487] = {.lex_state = 210}, - [1488] = {.lex_state = 210}, - [1489] = {.lex_state = 219}, - [1490] = {.lex_state = 219}, - [1491] = {.lex_state = 162}, - [1492] = {.lex_state = 154}, - [1493] = {.lex_state = 154}, - [1494] = {.lex_state = 236}, - [1495] = {.lex_state = 240}, - [1496] = {.lex_state = 226}, - [1497] = {.lex_state = 240}, - [1498] = {.lex_state = 226}, - [1499] = {.lex_state = 240}, - [1500] = {.lex_state = 240}, - [1501] = {.lex_state = 211}, - [1502] = {.lex_state = 240}, - [1503] = {.lex_state = 154}, - [1504] = {.lex_state = 236}, - [1505] = {.lex_state = 236}, - [1506] = {.lex_state = 236}, + [1469] = {.lex_state = 199}, + [1470] = {.lex_state = 234}, + [1471] = {.lex_state = 199}, + [1472] = {.lex_state = 154}, + [1473] = {.lex_state = 216}, + [1474] = {.lex_state = 154}, + [1475] = {.lex_state = 216}, + [1476] = {.lex_state = 216}, + [1477] = {.lex_state = 219}, + [1478] = {.lex_state = 235}, + [1479] = {.lex_state = 238}, + [1480] = {.lex_state = 223}, + [1481] = {.lex_state = 238}, + [1482] = {.lex_state = 223}, + [1483] = {.lex_state = 238}, + [1484] = {.lex_state = 238}, + [1485] = {.lex_state = 213}, + [1486] = {.lex_state = 238}, + [1487] = {.lex_state = 154}, + [1488] = {.lex_state = 235}, + [1489] = {.lex_state = 235}, + [1490] = {.lex_state = 235}, + [1491] = {.lex_state = 154}, + [1492] = {.lex_state = 216}, + [1493] = {.lex_state = 216}, + [1494] = {.lex_state = 219}, + [1495] = {.lex_state = 154}, + [1496] = {.lex_state = 216}, + [1497] = {.lex_state = 220}, + [1498] = {.lex_state = 220}, + [1499] = {.lex_state = 220}, + [1500] = {.lex_state = 154}, + [1501] = {.lex_state = 216}, + [1502] = {.lex_state = 216}, + [1503] = {.lex_state = 219}, + [1504] = {.lex_state = 154}, + [1505] = {.lex_state = 219}, + [1506] = {.lex_state = 199}, [1507] = {.lex_state = 154}, - [1508] = {.lex_state = 210}, + [1508] = {.lex_state = 215}, [1509] = {.lex_state = 154}, - [1510] = {.lex_state = 210}, - [1511] = {.lex_state = 210}, - [1512] = {.lex_state = 219}, - [1513] = {.lex_state = 154}, - [1514] = {.lex_state = 210}, - [1515] = {.lex_state = 154}, - [1516] = {.lex_state = 210}, - [1517] = {.lex_state = 210}, - [1518] = {.lex_state = 219}, - [1519] = {.lex_state = 239}, + [1510] = {.lex_state = 216}, + [1511] = {.lex_state = 216}, + [1512] = {.lex_state = 154}, + [1513] = {.lex_state = 216}, + [1514] = {.lex_state = 219}, + [1515] = {.lex_state = 199}, + [1516] = {.lex_state = 217}, + [1517] = {.lex_state = 154}, + [1518] = {.lex_state = 241}, + [1519] = {.lex_state = 154}, [1520] = {.lex_state = 154}, - [1521] = {.lex_state = 213}, - [1522] = {.lex_state = 154}, - [1523] = {.lex_state = 210}, - [1524] = {.lex_state = 223}, - [1525] = {.lex_state = 154}, - [1526] = {.lex_state = 210}, - [1527] = {.lex_state = 210}, + [1521] = {.lex_state = 154}, + [1522] = {.lex_state = 216}, + [1523] = {.lex_state = 216}, + [1524] = {.lex_state = 219}, + [1525] = {.lex_state = 199}, + [1526] = {.lex_state = 154}, + [1527] = {.lex_state = 154}, [1528] = {.lex_state = 154}, - [1529] = {.lex_state = 210}, - [1530] = {.lex_state = 219}, - [1531] = {.lex_state = 162}, + [1529] = {.lex_state = 154}, + [1530] = {.lex_state = 154}, + [1531] = {.lex_state = 154}, [1532] = {.lex_state = 154}, - [1533] = {.lex_state = 210}, - [1534] = {.lex_state = 210}, + [1533] = {.lex_state = 216}, + [1534] = {.lex_state = 216}, [1535] = {.lex_state = 219}, [1536] = {.lex_state = 154}, - [1537] = {.lex_state = 210}, - [1538] = {.lex_state = 154}, - [1539] = {.lex_state = 210}, - [1540] = {.lex_state = 219}, - [1541] = {.lex_state = 162}, - [1542] = {.lex_state = 154}, - [1543] = {.lex_state = 162}, - [1544] = {.lex_state = 154}, - [1545] = {.lex_state = 154}, - [1546] = {.lex_state = 210}, - [1547] = {.lex_state = 210}, + [1537] = {.lex_state = 219}, + [1538] = {.lex_state = 199}, + [1539] = {.lex_state = 154}, + [1540] = {.lex_state = 154}, + [1541] = {.lex_state = 154}, + [1542] = {.lex_state = 216}, + [1543] = {.lex_state = 216}, + [1544] = {.lex_state = 238}, + [1545] = {.lex_state = 238}, + [1546] = {.lex_state = 238}, + [1547] = {.lex_state = 238}, [1548] = {.lex_state = 154}, - [1549] = {.lex_state = 210}, - [1550] = {.lex_state = 219}, - [1551] = {.lex_state = 162}, - [1552] = {.lex_state = 240}, - [1553] = {.lex_state = 240}, - [1554] = {.lex_state = 240}, - [1555] = {.lex_state = 240}, + [1549] = {.lex_state = 216}, + [1550] = {.lex_state = 216}, + [1551] = {.lex_state = 154}, + [1552] = {.lex_state = 220}, + [1553] = {.lex_state = 154}, + [1554] = {.lex_state = 216}, + [1555] = {.lex_state = 216}, [1556] = {.lex_state = 154}, - [1557] = {.lex_state = 154}, - [1558] = {.lex_state = 210}, - [1559] = {.lex_state = 210}, - [1560] = {.lex_state = 154}, + [1557] = {.lex_state = 216}, + [1558] = {.lex_state = 219}, + [1559] = {.lex_state = 199}, + [1560] = {.lex_state = 215}, [1561] = {.lex_state = 154}, - [1562] = {.lex_state = 210}, - [1563] = {.lex_state = 210}, - [1564] = {.lex_state = 213}, - [1565] = {.lex_state = 154}, - [1566] = {.lex_state = 223}, - [1567] = {.lex_state = 154}, - [1568] = {.lex_state = 210}, + [1562] = {.lex_state = 216}, + [1563] = {.lex_state = 154}, + [1564] = {.lex_state = 216}, + [1565] = {.lex_state = 216}, + [1566] = {.lex_state = 219}, + [1567] = {.lex_state = 241}, + [1568] = {.lex_state = 154}, [1569] = {.lex_state = 154}, - [1570] = {.lex_state = 210}, - [1571] = {.lex_state = 210}, - [1572] = {.lex_state = 219}, - [1573] = {.lex_state = 154}, - [1574] = {.lex_state = 210}, - [1575] = {.lex_state = 210}, + [1570] = {.lex_state = 216}, + [1571] = {.lex_state = 154}, + [1572] = {.lex_state = 216}, + [1573] = {.lex_state = 219}, + [1574] = {.lex_state = 199}, + [1575] = {.lex_state = 154}, [1576] = {.lex_state = 154}, - [1577] = {.lex_state = 154}, - [1578] = {.lex_state = 210}, - [1579] = {.lex_state = 210}, - [1580] = {.lex_state = 219}, - [1581] = {.lex_state = 219}, - [1582] = {.lex_state = 162}, - [1583] = {.lex_state = 154}, - [1584] = {.lex_state = 154}, + [1577] = {.lex_state = 199}, + [1578] = {.lex_state = 154}, + [1579] = {.lex_state = 216}, + [1580] = {.lex_state = 216}, + [1581] = {.lex_state = 154}, + [1582] = {.lex_state = 216}, + [1583] = {.lex_state = 219}, + [1584] = {.lex_state = 199}, [1585] = {.lex_state = 154}, - [1586] = {.lex_state = 210}, + [1586] = {.lex_state = 216}, [1587] = {.lex_state = 154}, - [1588] = {.lex_state = 210}, - [1589] = {.lex_state = 210}, - [1590] = {.lex_state = 219}, - [1591] = {.lex_state = 154}, - [1592] = {.lex_state = 210}, - [1593] = {.lex_state = 154}, - [1594] = {.lex_state = 210}, - [1595] = {.lex_state = 213}, - [1596] = {.lex_state = 223}, + [1588] = {.lex_state = 216}, + [1589] = {.lex_state = 220}, + [1590] = {.lex_state = 154}, + [1591] = {.lex_state = 216}, + [1592] = {.lex_state = 154}, + [1593] = {.lex_state = 216}, + [1594] = {.lex_state = 216}, + [1595] = {.lex_state = 219}, + [1596] = {.lex_state = 215}, [1597] = {.lex_state = 154}, [1598] = {.lex_state = 154}, - [1599] = {.lex_state = 210}, - [1600] = {.lex_state = 210}, + [1599] = {.lex_state = 216}, + [1600] = {.lex_state = 216}, [1601] = {.lex_state = 154}, - [1602] = {.lex_state = 210}, - [1603] = {.lex_state = 154}, - [1604] = {.lex_state = 210}, - [1605] = {.lex_state = 210}, + [1602] = {.lex_state = 154}, + [1603] = {.lex_state = 216}, + [1604] = {.lex_state = 216}, + [1605] = {.lex_state = 219}, [1606] = {.lex_state = 154}, - [1607] = {.lex_state = 210}, - [1608] = {.lex_state = 219}, - [1609] = {.lex_state = 162}, + [1607] = {.lex_state = 219}, + [1608] = {.lex_state = 199}, + [1609] = {.lex_state = 154}, [1610] = {.lex_state = 154}, - [1611] = {.lex_state = 154}, - [1612] = {.lex_state = 210}, - [1613] = {.lex_state = 210}, - [1614] = {.lex_state = 154}, - [1615] = {.lex_state = 154}, - [1616] = {.lex_state = 223}, + [1611] = {.lex_state = 216}, + [1612] = {.lex_state = 154}, + [1613] = {.lex_state = 216}, + [1614] = {.lex_state = 216}, + [1615] = {.lex_state = 219}, + [1616] = {.lex_state = 154}, [1617] = {.lex_state = 154}, - [1618] = {.lex_state = 210}, + [1618] = {.lex_state = 220}, [1619] = {.lex_state = 154}, [1620] = {.lex_state = 154}, - [1621] = {.lex_state = 210}, - [1622] = {.lex_state = 154}, - [1623] = {.lex_state = 210}, - [1624] = {.lex_state = 210}, - [1625] = {.lex_state = 219}, + [1621] = {.lex_state = 216}, + [1622] = {.lex_state = 216}, + [1623] = {.lex_state = 215}, + [1624] = {.lex_state = 154}, + [1625] = {.lex_state = 216}, [1626] = {.lex_state = 154}, - [1627] = {.lex_state = 210}, - [1628] = {.lex_state = 154}, + [1627] = {.lex_state = 216}, + [1628] = {.lex_state = 216}, [1629] = {.lex_state = 154}, - [1630] = {.lex_state = 154}, - [1631] = {.lex_state = 210}, - [1632] = {.lex_state = 210}, + [1630] = {.lex_state = 216}, + [1631] = {.lex_state = 219}, + [1632] = {.lex_state = 199}, [1633] = {.lex_state = 154}, [1634] = {.lex_state = 154}, - [1635] = {.lex_state = 210}, - [1636] = {.lex_state = 154}, + [1635] = {.lex_state = 216}, + [1636] = {.lex_state = 216}, + [1637] = {.lex_state = 220}, + [1638] = {.lex_state = 154}, + [1639] = {.lex_state = 216}, + [1640] = {.lex_state = 154}, + [1641] = {.lex_state = 154}, + [1642] = {.lex_state = 216}, + [1643] = {.lex_state = 154}, + [1644] = {.lex_state = 216}, + [1645] = {.lex_state = 216}, + [1646] = {.lex_state = 219}, + [1647] = {.lex_state = 154}, + [1648] = {.lex_state = 216}, + [1649] = {.lex_state = 154}, + [1650] = {.lex_state = 154}, + [1651] = {.lex_state = 154}, + [1652] = {.lex_state = 216}, + [1653] = {.lex_state = 216}, + [1654] = {.lex_state = 154}, + [1655] = {.lex_state = 154}, + [1656] = {.lex_state = 216}, + [1657] = {.lex_state = 154}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [anon_sym__Atomic] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), [aux_sym_preproc_if_token2] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), [anon_sym_signed] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), + [aux_sym_preproc_elif_token1] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_volatile] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), + [anon_sym___attribute__] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_union] = ACTIONS(1), [anon_sym_unsigned] = ACTIONS(1), [anon_sym_short] = ACTIONS(1), [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [anon_sym_long] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), [sym_true] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), - [aux_sym_preproc_else_token1] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), - [sym_preproc_directive] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), - [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_include_token1] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), [sym_false] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), + [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [aux_sym_preproc_include_token1] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_auto] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [sym_null] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_goto] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [aux_sym_preproc_def_token1] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_register] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), }, [1] = { - [sym_goto_statement] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_logical_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(36), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_conditional_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_type_definition] = STATE(36), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(36), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(36), - [sym_preproc_include] = STATE(36), - [sym_assignment_expression] = STATE(40), - [sym_preproc_ifdef] = STATE(36), - [sym_shift_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(36), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym__expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_function_definition] = STATE(36), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym__empty_declaration] = STATE(36), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(36), - [sym_for_statement] = STATE(36), + [sym_continue_statement] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(39), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(39), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(39), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(39), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_do_statement] = STATE(39), [sym_translation_unit] = STATE(41), - [sym_comma_expression] = STATE(42), - [sym_preproc_call] = STATE(36), - [sym_equality_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(39), + [sym_bitwise_expression] = STATE(42), [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(40), - [sym_linkage_specification] = STATE(36), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(9), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(19), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(17), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(39), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(39), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(65), [ts_builtin_sym_end] = ACTIONS(67), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(81), }, [2] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(33), + [sym_continue_statement] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(50), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(50), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(50), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(50), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(50), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(50), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(50), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [3] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(53), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_field_declaration_list] = STATE(53), + [anon_sym_LBRACE] = ACTIONS(93), + [sym_identifier] = ACTIONS(95), + [sym_comment] = ACTIONS(3), }, [4] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(119), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(55), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(55), + [sym_math_expression] = STATE(55), + [sym_cast_expression] = STATE(55), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(55), + [sym_assignment_expression] = STATE(55), + [sym_relational_expression] = STATE(55), + [sym_shift_expression] = STATE(55), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(55), + [sym_bitwise_expression] = STATE(55), + [sym_equality_expression] = STATE(55), + [sym_sizeof_expression] = STATE(55), + [sym_compound_literal_expression] = STATE(55), + [sym_parenthesized_expression] = STATE(55), + [sym_char_literal] = STATE(55), + [sym_null] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(97), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [5] = { - [anon_sym_LPAREN2] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_long] = ACTIONS(135), - [anon_sym__Atomic] = ACTIONS(135), - [sym_primitive_type] = ACTIONS(135), - [sym_identifier] = ACTIONS(135), - [sym_true] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_static] = ACTIONS(135), - [anon_sym_restrict] = ACTIONS(135), - [sym_number_literal] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_PLUS_PLUS] = ACTIONS(133), - [anon_sym_signed] = ACTIONS(135), - [anon_sym_enum] = ACTIONS(135), - [sym_false] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_auto] = ACTIONS(135), - [anon_sym_volatile] = ACTIONS(135), - [anon_sym_inline] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_union] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(133), - [anon_sym_unsigned] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(135), - [anon_sym_short] = ACTIONS(135), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(135), - [sym_null] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_register] = ACTIONS(135), - [anon_sym_const] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_RBRACK] = ACTIONS(105), + [anon_sym_union] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_unsigned] = ACTIONS(107), + [anon_sym_volatile] = ACTIONS(107), + [anon_sym_short] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_const] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_COLON] = ACTIONS(105), + [anon_sym__Atomic] = ACTIONS(107), + [sym_primitive_type] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(105), + [anon_sym_static] = ACTIONS(107), + [anon_sym_restrict] = ACTIONS(107), + [anon_sym_register] = ACTIONS(107), + [anon_sym_extern] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(105), + [sym_number_literal] = ACTIONS(105), + [anon_sym_struct] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_signed] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(107), + [anon_sym_long] = ACTIONS(107), + [sym_identifier] = ACTIONS(107), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [sym_false] = ACTIONS(107), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(105), + [anon_sym_RPAREN] = ACTIONS(105), + [anon_sym_auto] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(107), + [anon_sym___attribute__] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(105), }, [6] = { - [anon_sym_LPAREN2] = ACTIONS(137), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(57), + [aux_sym_string_literal_token1] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(109), }, [7] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(141), - [sym_preproc_arg] = ACTIONS(143), + [sym_while_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(63), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [8] = { + [sym_identifier] = ACTIONS(125), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(145), }, [9] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(33), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [10] = { - [anon_sym_LPAREN2] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(151), - [anon_sym_long] = ACTIONS(153), - [anon_sym__Atomic] = ACTIONS(153), - [sym_primitive_type] = ACTIONS(153), - [anon_sym_auto] = ACTIONS(153), - [anon_sym_volatile] = ACTIONS(153), - [anon_sym_inline] = ACTIONS(153), - [anon_sym_extern] = ACTIONS(153), - [sym_identifier] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_union] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [anon_sym_static] = ACTIONS(153), - [anon_sym_restrict] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(151), - [anon_sym_signed] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_register] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_const] = ACTIONS(153), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(131), + [sym_preproc_arg] = ACTIONS(133), }, [11] = { - [sym_union_specifier] = STATE(70), - [sym_macro_type_specifier] = STATE(70), - [sym_struct_specifier] = STATE(70), - [sym__type_specifier] = STATE(70), - [sym_sized_type_specifier] = STATE(70), - [sym_enum_specifier] = STATE(70), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(69), - [sym_type_qualifier] = STATE(69), - [anon_sym_short] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(159), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [12] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(151), }, [13] = { - [sym_parenthesized_expression] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(87), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [14] = { - [sym_parenthesized_expression] = STATE(81), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_struct_specifier] = STATE(93), + [sym_macro_type_specifier] = STATE(93), + [sym_type_qualifier] = STATE(92), + [aux_sym_type_definition_repeat1] = STATE(92), + [sym_union_specifier] = STATE(93), + [sym__type_specifier] = STATE(93), + [sym_sized_type_specifier] = STATE(93), + [sym_enum_specifier] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(181), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [15] = { - [sym_parenthesized_expression] = STATE(83), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [16] = { - [sym_enumerator_list] = STATE(86), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(187), }, [17] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(189), }, [18] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(97), - [sym_logical_expression] = STATE(97), - [sym_bitwise_expression] = STATE(97), - [sym_cast_expression] = STATE(97), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(97), - [sym_char_literal] = STATE(97), - [sym_assignment_expression] = STATE(97), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(97), - [sym_math_expression] = STATE(97), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(97), - [sym_equality_expression] = STATE(97), - [sym_relational_expression] = STATE(97), - [sym_sizeof_expression] = STATE(97), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(97), - [sym_concatenated_string] = STATE(97), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(209), - [sym_false] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(207), + [sym_identifier] = ACTIONS(191), + [sym_comment] = ACTIONS(3), }, [19] = { + [sym_string_literal] = STATE(99), + [sym_system_lib_string] = ACTIONS(193), + [anon_sym_DQUOTE] = ACTIONS(195), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(211), }, [20] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(213), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [21] = { - [sym_string_literal] = STATE(101), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(217), + [anon_sym_union] = ACTIONS(201), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [anon_sym_static] = ACTIONS(201), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_struct] = ACTIONS(201), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_signed] = ACTIONS(201), + [anon_sym_enum] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym__Atomic] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(201), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [22] = { [sym_string_literal] = STATE(102), - [anon_sym_long] = ACTIONS(153), - [anon_sym__Atomic] = ACTIONS(153), - [sym_primitive_type] = ACTIONS(153), - [anon_sym_auto] = ACTIONS(153), - [anon_sym_volatile] = ACTIONS(153), - [anon_sym_inline] = ACTIONS(153), - [anon_sym_extern] = ACTIONS(153), - [sym_identifier] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_union] = ACTIONS(153), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [anon_sym_static] = ACTIONS(153), - [anon_sym_restrict] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_register] = ACTIONS(153), - [anon_sym_const] = ACTIONS(153), + [anon_sym_union] = ACTIONS(201), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [anon_sym_static] = ACTIONS(201), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(201), + [anon_sym_signed] = ACTIONS(201), + [anon_sym_enum] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_const] = ACTIONS(201), + [anon_sym__Atomic] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(201), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(79), }, [23] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(104), - [sym_logical_expression] = STATE(104), - [sym_bitwise_expression] = STATE(104), - [sym_cast_expression] = STATE(104), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(104), - [sym_char_literal] = STATE(104), - [sym_assignment_expression] = STATE(104), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(104), - [sym_math_expression] = STATE(104), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(104), - [sym_equality_expression] = STATE(104), - [sym_relational_expression] = STATE(104), - [sym_sizeof_expression] = STATE(104), - [sym_subscript_expression] = STATE(34), [sym_parenthesized_expression] = STATE(104), - [sym_concatenated_string] = STATE(104), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(219), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(221), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [24] = { - [sym_field_declaration_list] = STATE(107), + [sym_field_declaration_list] = STATE(106), + [anon_sym_LBRACE] = ACTIONS(93), + [sym_identifier] = ACTIONS(207), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(225), - [sym_identifier] = ACTIONS(227), }, [25] = { - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(229), - [aux_sym_char_literal_token1] = ACTIONS(231), + [sym_parenthesized_expression] = STATE(108), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(209), }, [26] = { - [sym_field_declaration_list] = STATE(110), + [sym_enumerator_list] = STATE(111), + [anon_sym_LBRACE] = ACTIONS(211), + [sym_identifier] = ACTIONS(213), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(225), - [sym_identifier] = ACTIONS(233), }, [27] = { - [aux_sym_string_literal_repeat1] = STATE(112), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(237), - [aux_sym_string_literal_token1] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [28] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(239), + [sym_concatenated_string] = STATE(124), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(124), + [sym_math_expression] = STATE(124), + [sym_cast_expression] = STATE(124), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(124), + [sym_assignment_expression] = STATE(124), + [sym_relational_expression] = STATE(124), + [sym_shift_expression] = STATE(124), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(124), + [sym_bitwise_expression] = STATE(124), + [sym_equality_expression] = STATE(124), + [sym_sizeof_expression] = STATE(124), + [sym_compound_literal_expression] = STATE(124), + [sym_parenthesized_expression] = STATE(124), + [sym_char_literal] = STATE(124), + [sym_null] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(237), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(255), + [sym_true] = ACTIONS(237), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [29] = { - [sym_do_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_parenthesized_expression] = STATE(125), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [30] = { [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(259), }, [31] = { - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_default] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [anon_sym__Atomic] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(253), - [sym_number_literal] = ACTIONS(253), - [anon_sym_restrict] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_while] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN2] = ACTIONS(253), - [anon_sym_long] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_static] = ACTIONS(255), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_case] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_struct] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(253), - [anon_sym_break] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(253), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_register] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), + [anon_sym_case] = ACTIONS(261), + [sym_null] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(261), + [anon_sym_const] = ACTIONS(261), + [anon_sym_typedef] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym_default] = ACTIONS(261), + [anon_sym__Atomic] = ACTIONS(261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(261), + [sym_number_literal] = ACTIONS(263), + [anon_sym_restrict] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_struct] = ACTIONS(261), + [anon_sym_signed] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(261), + [anon_sym_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym___attribute__] = ACTIONS(261), + [anon_sym_sizeof] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_union] = ACTIONS(261), + [anon_sym_unsigned] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [aux_sym_preproc_if_token1] = ACTIONS(261), + [anon_sym_LPAREN2] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_else] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [sym_primitive_type] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [aux_sym_preproc_include_token1] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(263), + [anon_sym_static] = ACTIONS(261), + [anon_sym_register] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_if] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(261), + [sym_false] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [sym_identifier] = ACTIONS(261), + [ts_builtin_sym_end] = ACTIONS(263), + [anon_sym_return] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(263), + [aux_sym_preproc_def_token1] = ACTIONS(261), + [anon_sym_auto] = ACTIONS(261), + [anon_sym_inline] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), }, [32] = { + [sym_identifier] = ACTIONS(265), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(257), }, [33] = { - [sym_do_statement] = STATE(127), - [sym_preproc_def] = STATE(127), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(127), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(127), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__empty_declaration] = STATE(127), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(127), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(127), - [aux_sym_translation_unit_repeat1] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_preproc_include] = STATE(127), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(127), - [sym_preproc_ifdef] = STATE(127), - [sym_linkage_specification] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_compound_statement] = STATE(127), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_char_literal_token1] = ACTIONS(267), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(269), }, [34] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(271), }, [35] = { - [sym_string_literal] = STATE(128), - [aux_sym_concatenated_string_repeat1] = STATE(128), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [36] = { - [sym_do_statement] = STATE(129), - [sym_preproc_def] = STATE(129), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(129), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(129), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(129), - [sym_goto_statement] = STATE(129), - [sym__empty_declaration] = STATE(129), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(129), - [sym_switch_statement] = STATE(129), - [sym_for_statement] = STATE(129), - [sym_return_statement] = STATE(129), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(129), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(129), - [aux_sym_translation_unit_repeat1] = STATE(129), - [sym_break_statement] = STATE(129), - [sym_preproc_include] = STATE(129), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(129), - [sym_preproc_ifdef] = STATE(129), - [sym_linkage_specification] = STATE(129), - [sym_continue_statement] = STATE(129), - [sym_compound_statement] = STATE(129), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(129), - [sym_expression_statement] = STATE(129), - [sym_while_statement] = STATE(129), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(9), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(19), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(17), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [ts_builtin_sym_end] = ACTIONS(269), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), + [aux_sym_sized_type_specifier_repeat1] = STATE(132), + [anon_sym_unsigned] = ACTIONS(273), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_short] = ACTIONS(273), + [anon_sym_static] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_signed] = ACTIONS(273), + [sym_identifier] = ACTIONS(279), + [anon_sym_long] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym__Atomic] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym___attribute__] = ACTIONS(275), }, [37] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(130), - [sym_storage_class_specifier] = STATE(130), - [sym_type_qualifier] = STATE(130), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(273), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(284), }, [38] = { - [sym_union_specifier] = STATE(131), - [sym_macro_type_specifier] = STATE(131), - [sym__type_specifier] = STATE(131), - [sym_sized_type_specifier] = STATE(131), - [aux_sym__declaration_specifiers_repeat1] = STATE(132), - [sym_enum_specifier] = STATE(131), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_storage_class_specifier] = STATE(132), - [sym_type_qualifier] = STATE(132), - [sym_struct_specifier] = STATE(131), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(275), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(17), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym_concatenated_string_repeat1] = STATE(134), + [sym_string_literal] = STATE(134), + [anon_sym_PERCENT] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [39] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(135), - [anon_sym_LPAREN2] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_long] = ACTIONS(284), - [anon_sym_auto] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym_inline] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_unsigned] = ACTIONS(284), - [anon_sym_short] = ACTIONS(284), - [anon_sym_static] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_signed] = ACTIONS(284), - [anon_sym_register] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), + [sym_continue_statement] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(135), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(135), + [sym_for_statement] = STATE(135), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(135), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(135), + [sym_return_statement] = STATE(135), + [sym_preproc_include] = STATE(135), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(135), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(135), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(135), + [sym_while_statement] = STATE(135), + [sym_preproc_def] = STATE(135), + [sym_goto_statement] = STATE(135), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(135), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(135), + [sym_expression_statement] = STATE(135), + [sym_do_statement] = STATE(135), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(135), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(135), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(135), + [sym_preproc_if] = STATE(135), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(135), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(65), + [ts_builtin_sym_end] = ACTIONS(286), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(81), }, [40] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [sym_struct_specifier] = STATE(136), + [sym_macro_type_specifier] = STATE(136), + [sym_attribute_specifier] = STATE(137), + [sym_type_qualifier] = STATE(137), + [sym_union_specifier] = STATE(136), + [sym__type_specifier] = STATE(136), + [sym_sized_type_specifier] = STATE(136), + [sym_enum_specifier] = STATE(136), + [aux_sym__declaration_specifiers_repeat1] = STATE(137), + [sym_storage_class_specifier] = STATE(137), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(15), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(15), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(288), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [41] = { [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(326), + [ts_builtin_sym_end] = ACTIONS(290), }, [42] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(316), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(302), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(326), }, [43] = { - [sym__declarator] = STATE(157), - [sym_function_declarator] = STATE(157), - [sym_array_declarator] = STATE(157), - [sym_pointer_declarator] = STATE(157), - [sym_init_declarator] = STATE(158), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(332), + [sym_function_declarator] = STATE(158), + [sym__declarator] = STATE(158), + [sym_init_declarator] = STATE(159), + [sym_pointer_declarator] = STATE(158), + [sym_array_declarator] = STATE(158), + [sym_identifier] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), + [sym_comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(334), }, [44] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), + [aux_sym__declaration_specifiers_repeat1] = STATE(160), + [sym_attribute_specifier] = STATE(160), + [sym_type_qualifier] = STATE(160), + [sym_storage_class_specifier] = STATE(160), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(336), + [sym_identifier] = ACTIONS(338), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(336), [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [45] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), + [anon_sym_case] = ACTIONS(340), + [sym_null] = ACTIONS(340), + [anon_sym_volatile] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(340), + [anon_sym_const] = ACTIONS(340), + [anon_sym_typedef] = ACTIONS(340), + [anon_sym_DASH_DASH] = ACTIONS(342), + [anon_sym_default] = ACTIONS(340), + [anon_sym__Atomic] = ACTIONS(340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(340), + [sym_number_literal] = ACTIONS(342), + [anon_sym_restrict] = ACTIONS(340), + [anon_sym_extern] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(342), + [anon_sym_struct] = ACTIONS(340), + [anon_sym_signed] = ACTIONS(340), + [anon_sym_long] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym___attribute__] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_union] = ACTIONS(340), + [anon_sym_unsigned] = ACTIONS(340), + [anon_sym_short] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [anon_sym_TILDE] = ACTIONS(342), + [sym_preproc_directive] = ACTIONS(340), + [anon_sym_AMP] = ACTIONS(342), + [aux_sym_preproc_if_token1] = ACTIONS(340), + [anon_sym_LPAREN2] = ACTIONS(342), + [anon_sym_RBRACE] = ACTIONS(342), + [anon_sym_else] = ACTIONS(340), + [sym_true] = ACTIONS(340), + [sym_primitive_type] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_break] = ACTIONS(340), + [aux_sym_preproc_include_token1] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_static] = ACTIONS(340), + [anon_sym_register] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_if] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [anon_sym_enum] = ACTIONS(340), [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(107), + [ts_builtin_sym_end] = ACTIONS(342), + [anon_sym_return] = ACTIONS(340), + [anon_sym_continue] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(342), + [aux_sym_preproc_def_token1] = ACTIONS(340), + [anon_sym_auto] = ACTIONS(340), + [anon_sym_inline] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(340), }, [46] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(159), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(344), }, [47] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym__Atomic] = ACTIONS(344), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_restrict] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(344), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(130), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(130), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_const] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_parenthesized_expression] = STATE(162), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [48] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [49] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(107), + [sym_parenthesized_expression] = STATE(164), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [50] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(107), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(348), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [51] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(168), - [sym_logical_expression] = STATE(168), - [sym_bitwise_expression] = STATE(168), - [sym_cast_expression] = STATE(168), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(168), - [sym_char_literal] = STATE(168), - [sym_assignment_expression] = STATE(168), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(168), - [sym_math_expression] = STATE(168), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(168), - [sym_equality_expression] = STATE(168), - [sym_relational_expression] = STATE(168), - [sym_sizeof_expression] = STATE(168), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(168), - [sym_concatenated_string] = STATE(168), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(360), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(362), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(364), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(107), + [sym__declaration_specifiers] = STATE(176), + [sym_preproc_def] = STATE(173), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(173), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(173), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(173), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(173), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(173), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(173), + [sym_field_declaration] = STATE(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(350), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(356), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [anon_sym_RBRACE] = ACTIONS(358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(350), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [52] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_field_declaration_list] = STATE(177), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_volatile] = ACTIONS(364), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(364), + [anon_sym_restrict] = ACTIONS(364), + [anon_sym_register] = ACTIONS(364), + [anon_sym_extern] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(366), + [anon_sym_COMMA] = ACTIONS(366), + [sym_identifier] = ACTIONS(364), + [anon_sym_const] = ACTIONS(364), + [anon_sym_LPAREN2] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(366), + [anon_sym_SEMI] = ACTIONS(366), + [anon_sym__Atomic] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(366), + [anon_sym_auto] = ACTIONS(364), + [anon_sym_inline] = ACTIONS(364), + [anon_sym___attribute__] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(366), }, [53] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_volatile] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [anon_sym_register] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_COMMA] = ACTIONS(370), + [sym_identifier] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_LPAREN2] = ACTIONS(370), + [anon_sym_COLON] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym__Atomic] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(370), + [anon_sym_auto] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), + [anon_sym___attribute__] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), }, [54] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(178), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [55] = { - [sym_union_specifier] = STATE(184), - [sym_macro_type_specifier] = STATE(184), - [sym_struct_specifier] = STATE(184), - [sym__type_specifier] = STATE(184), - [sym_sized_type_specifier] = STATE(184), - [sym_enum_specifier] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [aux_sym_type_definition_repeat1] = STATE(183), - [sym_type_qualifier] = STATE(183), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(398), - [anon_sym_long] = ACTIONS(97), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_struct] = ACTIONS(63), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(372), }, [56] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(376), + [anon_sym_volatile] = ACTIONS(376), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(378), + [anon_sym_DASH_EQ] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(376), + [anon_sym_LT_EQ] = ACTIONS(378), + [anon_sym_CARET] = ACTIONS(376), + [anon_sym_DASH_GT] = ACTIONS(378), + [anon_sym_const] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym__Atomic] = ACTIONS(376), + [anon_sym_PLUS_EQ] = ACTIONS(378), + [anon_sym_LT_LT_EQ] = ACTIONS(378), + [anon_sym_QMARK] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(378), + [anon_sym_CARET_EQ] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_struct] = ACTIONS(376), + [anon_sym_signed] = ACTIONS(376), + [anon_sym_long] = ACTIONS(376), + [anon_sym_GT_GT_EQ] = ACTIONS(378), + [anon_sym_LT_LT] = ACTIONS(376), + [anon_sym_PIPE_EQ] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym___attribute__] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_union] = ACTIONS(376), + [anon_sym_unsigned] = ACTIONS(376), + [anon_sym_short] = ACTIONS(376), + [anon_sym_AMP_EQ] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(376), + [anon_sym_AMP_AMP] = ACTIONS(378), + [anon_sym_EQ] = ACTIONS(376), + [anon_sym_LPAREN2] = ACTIONS(378), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(378), + [anon_sym_COLON] = ACTIONS(378), + [sym_primitive_type] = ACTIONS(376), + [anon_sym_STAR_EQ] = ACTIONS(378), + [anon_sym_EQ_EQ] = ACTIONS(378), + [anon_sym_PIPE_PIPE] = ACTIONS(378), + [anon_sym_static] = ACTIONS(376), + [anon_sym_register] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [sym_identifier] = ACTIONS(376), + [anon_sym_SLASH_EQ] = ACTIONS(378), + [anon_sym_BANG_EQ] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(378), + [anon_sym_GT] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(376), + [anon_sym_auto] = ACTIONS(376), + [anon_sym_DOT] = ACTIONS(378), + [anon_sym_inline] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(378), }, [57] = { - [sym_string_literal] = STATE(185), - [aux_sym_concatenated_string_repeat1] = STATE(185), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [aux_sym_string_literal_repeat1] = STATE(180), + [aux_sym_string_literal_token1] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(380), }, [58] = { - [sym_abstract_function_declarator] = STATE(191), - [sym__abstract_declarator] = STATE(191), - [sym_abstract_array_declarator] = STATE(191), - [sym_abstract_pointer_declarator] = STATE(191), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(189), - [aux_sym_type_definition_repeat1] = STATE(189), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [sym_while_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(181), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [59] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(192), - [anon_sym_LPAREN2] = ACTIONS(277), - [anon_sym_long] = ACTIONS(410), - [anon_sym__Atomic] = ACTIONS(282), - [sym_identifier] = ACTIONS(412), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_unsigned] = ACTIONS(410), - [anon_sym_short] = ACTIONS(410), + [sym_parenthesized_expression] = STATE(182), [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_signed] = ACTIONS(410), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_const] = ACTIONS(282), + [anon_sym_LPAREN2] = ACTIONS(205), }, [60] = { - [sym_union_specifier] = STATE(58), - [sym_macro_type_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_type_descriptor] = STATE(193), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [anon_sym_long] = ACTIONS(97), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_struct] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(384), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [61] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_parenthesized_expression] = STATE(184), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [62] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(196), - [sym_logical_expression] = STATE(196), - [sym_bitwise_expression] = STATE(196), - [sym_cast_expression] = STATE(196), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(196), - [sym_char_literal] = STATE(196), - [sym_assignment_expression] = STATE(196), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(196), - [sym_math_expression] = STATE(196), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(196), - [sym_equality_expression] = STATE(196), - [sym_relational_expression] = STATE(196), - [sym_sizeof_expression] = STATE(196), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(196), - [sym_concatenated_string] = STATE(196), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(416), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(33), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(386), }, [63] = { - [sym__expression] = STATE(199), - [sym_logical_expression] = STATE(199), - [sym_bitwise_expression] = STATE(199), - [sym_cast_expression] = STATE(199), - [sym_declaration] = STATE(198), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(199), - [sym_char_literal] = STATE(199), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(199), - [sym_equality_expression] = STATE(199), - [sym_relational_expression] = STATE(199), - [sym_sizeof_expression] = STATE(199), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(199), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(199), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(199), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(199), - [sym_math_expression] = STATE(199), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(424), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(428), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(424), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(424), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [anon_sym_while] = ACTIONS(388), + [sym_comment] = ACTIONS(3), }, [64] = { - [anon_sym_LPAREN2] = ACTIONS(432), - [anon_sym_DASH_DASH] = ACTIONS(432), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [sym_true] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_typedef] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(432), - [sym_number_literal] = ACTIONS(432), - [anon_sym_return] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(432), - [aux_sym_preproc_include_token1] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_sizeof] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_unsigned] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(432), - [sym_null] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_do] = ACTIONS(434), - [anon_sym_goto] = ACTIONS(434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [ts_builtin_sym_end] = ACTIONS(432), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_register] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(434), - [anon_sym_LBRACE] = ACTIONS(432), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(390), }, [65] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(436), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_RBRACK] = ACTIONS(394), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(394), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(326), }, [66] = { - [sym_goto_statement] = STATE(228), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_union] = ACTIONS(398), + [anon_sym_sizeof] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_null] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [anon_sym_do] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(398), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(396), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(398), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym__Atomic] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [sym_true] = ACTIONS(398), + [anon_sym_for] = ACTIONS(398), + [anon_sym_break] = ACTIONS(398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [aux_sym_preproc_include_token1] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_static] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_if] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_switch] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(396), + [anon_sym_return] = ACTIONS(398), + [anon_sym_while] = ACTIONS(398), + [anon_sym_continue] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [anon_sym_SEMI] = ACTIONS(396), + [sym_number_literal] = ACTIONS(396), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_inline] = ACTIONS(398), + [anon_sym___attribute__] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + }, + [67] = { + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(400), + }, + [68] = { + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), + }, + [69] = { + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), + }, + [70] = { + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), + }, + [71] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(189), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [72] = { + [sym_concatenated_string] = STATE(191), + [sym_pointer_expression] = STATE(191), + [sym_logical_expression] = STATE(191), + [sym_math_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_field_expression] = STATE(191), + [sym_conditional_expression] = STATE(191), + [sym_assignment_expression] = STATE(191), + [sym_relational_expression] = STATE(191), + [sym_shift_expression] = STATE(191), + [sym_subscript_expression] = STATE(191), + [sym_call_expression] = STATE(191), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(191), + [sym_bitwise_expression] = STATE(191), + [sym_equality_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_compound_literal_expression] = STATE(191), + [sym_parenthesized_expression] = STATE(191), + [sym_char_literal] = STATE(191), + [sym_null] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(402), + [sym_identifier] = ACTIONS(402), + [anon_sym_LPAREN2] = ACTIONS(406), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), + }, + [73] = { + [aux_sym_concatenated_string_repeat1] = STATE(192), + [sym_string_literal] = STATE(192), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), + }, + [74] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_RBRACK] = ACTIONS(410), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(410), + [anon_sym_COLON] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_PLUS_PLUS] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [75] = { + [sym_continue_statement] = STATE(228), [sym_preproc_function_def] = STATE(228), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(227), - [sym_cast_expression] = STATE(229), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(226), + [sym_math_expression] = STATE(229), [sym_declaration] = STATE(228), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(228), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), [sym_switch_statement] = STATE(228), [sym_return_statement] = STATE(228), + [sym_preproc_include] = STATE(228), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(228), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(228), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), [aux_sym_translation_unit_repeat1] = STATE(228), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(228), - [sym_preproc_include] = STATE(228), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(228), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_preproc_def] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_preproc_else] = STATE(226), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(228), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), [sym_compound_statement] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), [sym_expression_statement] = STATE(228), [sym_do_statement] = STATE(228), - [sym_preproc_def] = STATE(228), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(227), + [sym_preproc_call] = STATE(228), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(228), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), [sym__empty_declaration] = STATE(228), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(228), - [sym_for_statement] = STATE(228), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(228), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(228), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(228), [sym_preproc_if] = STATE(228), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), [sym_linkage_specification] = STATE(228), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(228), - [sym_while_statement] = STATE(228), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(446), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(416), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, - [67] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(322), + [76] = { + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [68] = { - [anon_sym_LPAREN2] = ACTIONS(490), - [anon_sym_COLON] = ACTIONS(344), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(344), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(344), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_RPAREN] = ACTIONS(344), - [anon_sym_register] = ACTIONS(117), - [anon_sym_const] = ACTIONS(117), + [77] = { + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, - [69] = { - [sym_union_specifier] = STATE(232), - [sym_macro_type_specifier] = STATE(232), - [sym_struct_specifier] = STATE(232), - [sym__type_specifier] = STATE(232), - [sym_sized_type_specifier] = STATE(232), - [sym_enum_specifier] = STATE(232), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(183), - [sym_type_qualifier] = STATE(183), + [78] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(237), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(493), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), - }, - [70] = { - [sym_pointer_type_declarator] = STATE(236), - [sym_array_type_declarator] = STATE(236), - [sym_function_type_declarator] = STATE(236), - [sym__type_declarator] = STATE(236), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [71] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_LPAREN2] = ACTIONS(277), - [anon_sym_short] = ACTIONS(501), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(279), - [anon_sym_long] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(277), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_signed] = ACTIONS(501), - [anon_sym_unsigned] = ACTIONS(501), + [79] = { + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [72] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(33), + [80] = { + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [73] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(238), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [81] = { + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_volatile] = ACTIONS(474), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(474), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym__Atomic] = ACTIONS(474), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_restrict] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(234), }, - [74] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(240), + [82] = { + [sym_concatenated_string] = STATE(240), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(240), - [sym_bitwise_expression] = STATE(240), + [sym_math_expression] = STATE(240), [sym_cast_expression] = STATE(240), - [sym_field_expression] = STATE(240), - [sym_compound_literal_expression] = STATE(240), - [sym_char_literal] = STATE(240), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(240), [sym_assignment_expression] = STATE(240), - [sym_pointer_expression] = STATE(240), + [sym_relational_expression] = STATE(240), [sym_shift_expression] = STATE(240), - [sym_math_expression] = STATE(240), - [sym_call_expression] = STATE(240), - [sym_conditional_expression] = STATE(240), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(240), + [sym_bitwise_expression] = STATE(240), [sym_equality_expression] = STATE(240), - [sym_relational_expression] = STATE(240), [sym_sizeof_expression] = STATE(240), - [sym_subscript_expression] = STATE(240), + [sym_compound_literal_expression] = STATE(240), [sym_parenthesized_expression] = STATE(240), - [sym_concatenated_string] = STATE(240), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(33), - }, - [75] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(33), - }, - [76] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(33), - }, - [77] = { - [sym_string_literal] = STATE(241), - [aux_sym_concatenated_string_repeat1] = STATE(241), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), - }, - [78] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(509), - [anon_sym_CARET_EQ] = ACTIONS(509), - [anon_sym_LT_LT_EQ] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_DASH_EQ] = ACTIONS(509), - [anon_sym_SLASH_EQ] = ACTIONS(509), - [anon_sym_GT_GT_EQ] = ACTIONS(509), - [anon_sym_STAR_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_EQ] = ACTIONS(509), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(509), - [anon_sym_AMP_EQ] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_GT_GT] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_DOT] = ACTIONS(322), - }, - [79] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(253), - [sym_logical_expression] = STATE(253), - [sym_bitwise_expression] = STATE(253), - [sym_cast_expression] = STATE(253), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(253), - [sym_char_literal] = STATE(253), - [sym_assignment_expression] = STATE(253), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(253), - [sym_math_expression] = STATE(253), - [sym_call_expression] = STATE(54), - [sym_comma_expression] = STATE(254), - [sym_conditional_expression] = STATE(253), - [sym_equality_expression] = STATE(253), - [sym_relational_expression] = STATE(253), - [sym_sizeof_expression] = STATE(253), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(253), - [sym_concatenated_string] = STATE(253), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(513), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(107), - }, - [80] = { - [sym_do_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), - }, - [81] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), - }, - [82] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(95), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_AMP] = ACTIONS(107), + [sym_char_literal] = STATE(240), + [sym_null] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(482), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(480), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [83] = { - [sym_switch_body] = STATE(262), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [84] = { - [sym_enumerator] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(241), + [anon_sym_unsigned] = ACTIONS(486), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_short] = ACTIONS(486), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(531), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), + [anon_sym_signed] = ACTIONS(486), + [anon_sym_long] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [anon_sym_const] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym__Atomic] = ACTIONS(275), + [anon_sym_RPAREN] = ACTIONS(277), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(277), }, [85] = { - [sym_enumerator_list] = STATE(267), - [anon_sym_LPAREN2] = ACTIONS(533), - [anon_sym_COLON] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [anon_sym__Atomic] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_auto] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(535), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(533), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_register] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [86] = { - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_COLON] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [anon_sym__Atomic] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_auto] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(539), - [anon_sym_inline] = ACTIONS(539), - [anon_sym_extern] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(539), - [anon_sym_restrict] = ACTIONS(539), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_register] = ACTIONS(539), - [anon_sym_const] = ACTIONS(539), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(518), }, [87] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_COLON] = ACTIONS(541), - [anon_sym_RBRACK] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_CARET_EQ] = ACTIONS(541), - [anon_sym_LT_LT_EQ] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_SLASH_EQ] = ACTIONS(541), - [anon_sym_GT_GT_EQ] = ACTIONS(541), - [anon_sym_STAR_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_LT_LT] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_PIPE_EQ] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(541), - [anon_sym_AMP_EQ] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_DOT] = ACTIONS(322), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(520), }, [88] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(207), + [sym_struct_specifier] = STATE(257), + [sym_macro_type_specifier] = STATE(257), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [sym_union_specifier] = STATE(257), + [sym__type_specifier] = STATE(257), + [sym_sized_type_specifier] = STATE(257), + [sym_enum_specifier] = STATE(257), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_enum] = ACTIONS(63), }, [89] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(268), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_abstract_pointer_declarator] = STATE(262), + [sym_abstract_array_declarator] = STATE(262), + [sym_abstract_function_declarator] = STATE(262), + [sym__abstract_declarator] = STATE(262), + [sym_type_qualifier] = STATE(263), + [aux_sym_type_definition_repeat1] = STATE(263), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [90] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [aux_sym_concatenated_string_repeat1] = STATE(264), + [sym_string_literal] = STATE(264), + [anon_sym_PERCENT] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [91] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(271), - [sym_logical_expression] = STATE(271), - [sym_bitwise_expression] = STATE(271), - [sym_cast_expression] = STATE(271), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(271), - [sym_char_literal] = STATE(271), - [sym_assignment_expression] = STATE(271), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(271), - [sym_math_expression] = STATE(271), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(271), - [sym_equality_expression] = STATE(271), - [sym_relational_expression] = STATE(271), - [sym_sizeof_expression] = STATE(271), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(271), - [sym_concatenated_string] = STATE(271), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(549), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(551), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(553), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [sym_identifier] = ACTIONS(219), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(474), }, [92] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(207), + [sym_struct_specifier] = STATE(265), + [sym_macro_type_specifier] = STATE(265), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [sym_union_specifier] = STATE(265), + [sym__type_specifier] = STATE(265), + [sym_sized_type_specifier] = STATE(265), + [sym_enum_specifier] = STATE(265), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [93] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(207), + [sym_array_type_declarator] = STATE(269), + [sym_pointer_type_declarator] = STATE(269), + [sym_function_type_declarator] = STATE(269), + [sym__type_declarator] = STATE(269), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), + [sym_comment] = ACTIONS(3), }, [94] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(279), + [anon_sym_long] = ACTIONS(545), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_unsigned] = ACTIONS(545), + [anon_sym_short] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(277), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_signed] = ACTIONS(545), }, [95] = { - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_default] = ACTIONS(569), - [sym_identifier] = ACTIONS(569), - [anon_sym__Atomic] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(567), - [sym_number_literal] = ACTIONS(567), - [anon_sym_restrict] = ACTIONS(569), - [anon_sym_typedef] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_while] = ACTIONS(569), - [anon_sym_signed] = ACTIONS(569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_volatile] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_extern] = ACTIONS(569), - [anon_sym_sizeof] = ACTIONS(569), - [anon_sym_union] = ACTIONS(569), - [anon_sym_unsigned] = ACTIONS(569), - [anon_sym_short] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN2] = ACTIONS(567), - [anon_sym_long] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_primitive_type] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [sym_preproc_directive] = ACTIONS(569), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [aux_sym_preproc_include_token1] = ACTIONS(569), - [anon_sym_auto] = ACTIONS(569), - [anon_sym_inline] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_else] = ACTIONS(569), - [anon_sym_case] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [anon_sym_struct] = ACTIONS(569), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_goto] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [aux_sym_preproc_def_token1] = ACTIONS(569), - [anon_sym_register] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_CARET_EQ] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(326), }, [96] = { - [sym_string_literal] = STATE(278), - [aux_sym_concatenated_string_repeat1] = STATE(278), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(274), + [sym_math_expression] = STATE(274), + [sym_cast_expression] = STATE(274), + [sym_declaration] = STATE(272), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(274), + [sym_bitwise_expression] = STATE(274), + [sym_equality_expression] = STATE(274), + [sym_sizeof_expression] = STATE(274), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(274), + [sym_parenthesized_expression] = STATE(274), + [sym_concatenated_string] = STATE(274), + [sym_char_literal] = STATE(274), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(274), + [sym_assignment_expression] = STATE(274), + [sym_relational_expression] = STATE(274), + [sym_shift_expression] = STATE(274), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(551), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [97] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_default] = ACTIONS(563), + [anon_sym__Atomic] = ACTIONS(563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(563), + [sym_number_literal] = ACTIONS(565), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_signed] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym___attribute__] = ACTIONS(563), + [anon_sym_sizeof] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_union] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [aux_sym_preproc_if_token1] = ACTIONS(563), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_else] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [aux_sym_preproc_include_token1] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_static] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [ts_builtin_sym_end] = ACTIONS(565), + [anon_sym_return] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(565), + [aux_sym_preproc_def_token1] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_inline] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), }, [98] = { - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_default] = ACTIONS(601), - [sym_identifier] = ACTIONS(601), - [anon_sym__Atomic] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(599), - [sym_number_literal] = ACTIONS(599), - [anon_sym_restrict] = ACTIONS(601), - [anon_sym_typedef] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_while] = ACTIONS(601), - [anon_sym_signed] = ACTIONS(601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_volatile] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(601), - [anon_sym_sizeof] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_unsigned] = ACTIONS(601), - [anon_sym_short] = ACTIONS(601), - [anon_sym_do] = ACTIONS(601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_long] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_primitive_type] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [sym_preproc_directive] = ACTIONS(601), - [aux_sym_preproc_if_token1] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_static] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_if] = ACTIONS(601), - [anon_sym_switch] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [aux_sym_preproc_include_token1] = ACTIONS(601), - [anon_sym_auto] = ACTIONS(601), - [anon_sym_inline] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_else] = ACTIONS(601), - [anon_sym_case] = ACTIONS(601), - [sym_null] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(599), - [aux_sym_preproc_def_token1] = ACTIONS(601), - [anon_sym_register] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - }, - [99] = { - [sym_goto_statement] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(292), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(293), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(293), - [sym_return_statement] = STATE(293), + [sym_continue_statement] = STATE(280), + [sym_preproc_function_def] = STATE(280), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(279), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(280), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(280), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_preproc_include] = STATE(280), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(280), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(293), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(293), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(293), - [sym_preproc_include] = STATE(293), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(293), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(293), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(293), - [sym_do_statement] = STATE(293), - [sym_preproc_def] = STATE(293), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(280), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_preproc_def] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym_preproc_else] = STATE(279), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(280), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_do_statement] = STATE(280), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(292), + [sym_preproc_call] = STATE(280), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(293), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(293), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(293), - [sym_for_statement] = STATE(293), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(293), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(293), - [sym_preproc_if] = STATE(293), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(293), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(293), - [sym_while_statement] = STATE(293), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(603), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym__empty_declaration] = STATE(280), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(280), + [sym_preproc_if] = STATE(280), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(280), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(567), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + }, + [99] = { + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_union] = ACTIONS(571), + [anon_sym_sizeof] = ACTIONS(571), + [anon_sym_unsigned] = ACTIONS(571), + [anon_sym_volatile] = ACTIONS(571), + [anon_sym_short] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_null] = ACTIONS(571), + [sym_identifier] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(571), + [ts_builtin_sym_end] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(569), + [sym_preproc_directive] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_preproc_if_token1] = ACTIONS(571), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(569), + [anon_sym_typedef] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym__Atomic] = ACTIONS(571), + [sym_primitive_type] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(571), + [aux_sym_preproc_include_token1] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_restrict] = ACTIONS(571), + [anon_sym_register] = ACTIONS(571), + [anon_sym_extern] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_signed] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [anon_sym_long] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_return] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(569), + [sym_number_literal] = ACTIONS(569), + [aux_sym_preproc_def_token1] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [anon_sym_auto] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_inline] = ACTIONS(571), + [anon_sym___attribute__] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), }, [100] = { - [aux_sym_string_literal_repeat1] = STATE(295), - [anon_sym_DQUOTE] = ACTIONS(605), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(607), - [aux_sym_string_literal_token1] = ACTIONS(607), + [aux_sym_string_literal_repeat1] = STATE(282), + [aux_sym_string_literal_token1] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(575), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(573), }, [101] = { - [anon_sym_LPAREN2] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_long] = ACTIONS(611), - [anon_sym__Atomic] = ACTIONS(611), - [sym_primitive_type] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_identifier] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [sym_preproc_directive] = ACTIONS(611), - [aux_sym_preproc_if_token1] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_static] = ACTIONS(611), - [anon_sym_restrict] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_typedef] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_if] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_signed] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [sym_number_literal] = ACTIONS(609), - [anon_sym_return] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(609), - [aux_sym_preproc_include_token1] = ACTIONS(611), - [anon_sym_auto] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_inline] = ACTIONS(611), - [anon_sym_extern] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_sizeof] = ACTIONS(611), - [anon_sym_union] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(609), - [anon_sym_unsigned] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(609), - [sym_null] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_goto] = ACTIONS(611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [ts_builtin_sym_end] = ACTIONS(609), - [aux_sym_preproc_def_token1] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_register] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_DASH_DASH] = ACTIONS(579), + [anon_sym_COLON] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_PLUS_PLUS] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(326), }, [102] = { - [sym_union_specifier] = STATE(201), - [sym_macro_type_specifier] = STATE(201), - [sym_declaration_list] = STATE(297), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_function_definition] = STATE(297), - [sym_declaration] = STATE(297), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym__declaration_specifiers] = STATE(298), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(426), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(426), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(613), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_function_definition] = STATE(284), + [sym_declaration_list] = STATE(284), + [sym_declaration] = STATE(284), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_attribute_specifier] = STATE(277), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [sym__declaration_specifiers] = STATE(285), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(553), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [103] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(299), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(286), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(286), + [sym_math_expression] = STATE(286), + [sym_cast_expression] = STATE(286), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(286), + [sym_assignment_expression] = STATE(286), + [sym_relational_expression] = STATE(286), + [sym_shift_expression] = STATE(286), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(286), + [sym_comma_expression] = STATE(287), + [sym_bitwise_expression] = STATE(286), + [sym_equality_expression] = STATE(286), + [sym_sizeof_expression] = STATE(286), + [sym_compound_literal_expression] = STATE(286), + [sym_parenthesized_expression] = STATE(286), + [sym_char_literal] = STATE(286), + [sym_null] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(583), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [104] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(292), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [105] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(309), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(309), - [sym__field_declaration_list_item] = STATE(309), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(309), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(309), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(309), - [sym_field_declaration] = STATE(309), - [sym__declaration_specifiers] = STATE(308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(619), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(63), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(619), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_field_declaration_list] = STATE(293), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_volatile] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(595), + [anon_sym_restrict] = ACTIONS(595), + [anon_sym_register] = ACTIONS(595), + [anon_sym_extern] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [sym_identifier] = ACTIONS(595), + [anon_sym_const] = ACTIONS(595), + [anon_sym_LPAREN2] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym__Atomic] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_auto] = ACTIONS(595), + [anon_sym_inline] = ACTIONS(595), + [anon_sym___attribute__] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(597), }, [106] = { - [sym_field_declaration_list] = STATE(310), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_COLON] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [anon_sym__Atomic] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(633), - [anon_sym_auto] = ACTIONS(635), - [anon_sym_volatile] = ACTIONS(635), - [anon_sym_inline] = ACTIONS(635), - [anon_sym_extern] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(633), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(635), - [anon_sym_restrict] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_register] = ACTIONS(635), - [anon_sym_const] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_volatile] = ACTIONS(599), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(599), + [anon_sym_restrict] = ACTIONS(599), + [anon_sym_register] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [sym_identifier] = ACTIONS(599), + [anon_sym_const] = ACTIONS(599), + [anon_sym_LPAREN2] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym__Atomic] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_auto] = ACTIONS(599), + [anon_sym_inline] = ACTIONS(599), + [anon_sym___attribute__] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(601), }, [107] = { - [anon_sym_LPAREN2] = ACTIONS(637), - [anon_sym_COLON] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym__Atomic] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_auto] = ACTIONS(639), - [anon_sym_volatile] = ACTIONS(639), - [anon_sym_inline] = ACTIONS(639), - [anon_sym_extern] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(639), - [anon_sym_restrict] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_register] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), + [sym_concatenated_string] = STATE(85), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_null] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(153), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [108] = { + [sym_switch_body] = STATE(295), + [anon_sym_LBRACE] = ACTIONS(603), [sym_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(641), }, [109] = { - [sym_field_declaration_list] = STATE(312), - [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_COLON] = ACTIONS(643), - [sym_identifier] = ACTIONS(645), - [anon_sym__Atomic] = ACTIONS(645), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_inline] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(643), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(645), - [anon_sym_restrict] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(643), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_register] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(225), + [sym_enumerator] = STATE(299), + [sym_identifier] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(609), + [sym_comment] = ACTIONS(3), }, [110] = { - [anon_sym_LPAREN2] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(647), - [sym_identifier] = ACTIONS(649), - [anon_sym__Atomic] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_volatile] = ACTIONS(649), - [anon_sym_inline] = ACTIONS(649), - [anon_sym_extern] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(649), - [anon_sym_restrict] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_register] = ACTIONS(649), - [anon_sym_const] = ACTIONS(649), + [sym_enumerator_list] = STATE(300), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_volatile] = ACTIONS(611), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(611), + [anon_sym_restrict] = ACTIONS(611), + [anon_sym_register] = ACTIONS(611), + [anon_sym_extern] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [sym_identifier] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_LPAREN2] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym__Atomic] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_auto] = ACTIONS(611), + [anon_sym_inline] = ACTIONS(611), + [anon_sym___attribute__] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(613), }, [111] = { - [anon_sym_DASH_DASH] = ACTIONS(651), - [sym_identifier] = ACTIONS(653), - [anon_sym__Atomic] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_LT_LT_EQ] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_restrict] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_signed] = ACTIONS(653), - [anon_sym_DASH_EQ] = ACTIONS(651), - [anon_sym_GT_GT_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_PIPE_EQ] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_volatile] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_union] = ACTIONS(653), - [anon_sym_unsigned] = ACTIONS(653), - [anon_sym_short] = ACTIONS(653), - [anon_sym_AMP_EQ] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), - [anon_sym_DOT] = ACTIONS(651), - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_long] = ACTIONS(653), - [sym_primitive_type] = ACTIONS(653), - [anon_sym_CARET_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_enum] = ACTIONS(653), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_struct] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_DASH_GT] = ACTIONS(651), - [anon_sym_const] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_volatile] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(615), + [anon_sym_restrict] = ACTIONS(615), + [anon_sym_register] = ACTIONS(615), + [anon_sym_extern] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [sym_identifier] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN2] = ACTIONS(617), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym__Atomic] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_auto] = ACTIONS(615), + [anon_sym_inline] = ACTIONS(615), + [anon_sym___attribute__] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), }, [112] = { - [aux_sym_string_literal_repeat1] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(657), - [aux_sym_string_literal_token1] = ACTIONS(657), + [sym_concatenated_string] = STATE(301), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(301), + [sym_math_expression] = STATE(301), + [sym_cast_expression] = STATE(301), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(301), + [sym_assignment_expression] = STATE(301), + [sym_relational_expression] = STATE(301), + [sym_shift_expression] = STATE(301), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(301), + [sym_bitwise_expression] = STATE(301), + [sym_equality_expression] = STATE(301), + [sym_sizeof_expression] = STATE(301), + [sym_compound_literal_expression] = STATE(301), + [sym_parenthesized_expression] = STATE(301), + [sym_char_literal] = STATE(301), + [sym_null] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(619), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [113] = { - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_default] = ACTIONS(661), - [sym_identifier] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(659), - [sym_number_literal] = ACTIONS(659), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym_typedef] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(659), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(659), - [anon_sym_extern] = ACTIONS(661), - [anon_sym_sizeof] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsigned] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(659), - [anon_sym_long] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_primitive_type] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [sym_preproc_directive] = ACTIONS(661), - [aux_sym_preproc_if_token1] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_static] = ACTIONS(661), - [anon_sym_RBRACE] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_if] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [aux_sym_preproc_include_token1] = ACTIONS(661), - [anon_sym_auto] = ACTIONS(661), - [anon_sym_inline] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_case] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(659), - [anon_sym_break] = ACTIONS(661), - [anon_sym_goto] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(661), - [anon_sym_register] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), + [sym_struct_specifier] = STATE(89), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [sym_type_descriptor] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_enum] = ACTIONS(63), }, [114] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [115] = { - [anon_sym_LPAREN2] = ACTIONS(665), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [116] = { - [sym_do_statement] = STATE(317), - [sym_goto_statement] = STATE(317), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(317), - [sym_for_statement] = STATE(317), - [sym_return_statement] = STATE(317), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(317), - [sym_continue_statement] = STATE(317), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(317), - [sym_labeled_statement] = STATE(317), - [sym_expression_statement] = STATE(317), - [sym_while_statement] = STATE(317), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [117] = { - [sym_parenthesized_expression] = STATE(318), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [118] = { - [sym_parenthesized_expression] = STATE(319), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [119] = { - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(667), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_AMP_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_LT_LT_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_GT_GT_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [120] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(312), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [121] = { - [sym_preproc_params] = STATE(325), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(675), + [anon_sym_case] = ACTIONS(641), + [sym_null] = ACTIONS(641), + [anon_sym_volatile] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(641), + [anon_sym_const] = ACTIONS(641), + [anon_sym_typedef] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(643), + [anon_sym_default] = ACTIONS(641), + [anon_sym__Atomic] = ACTIONS(641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(641), + [sym_number_literal] = ACTIONS(643), + [anon_sym_restrict] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(641), + [anon_sym_signed] = ACTIONS(641), + [anon_sym_long] = ACTIONS(641), + [anon_sym_while] = ACTIONS(641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(641), + [anon_sym_sizeof] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_union] = ACTIONS(641), + [anon_sym_unsigned] = ACTIONS(641), + [anon_sym_short] = ACTIONS(641), + [anon_sym_do] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [sym_preproc_directive] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), + [aux_sym_preproc_if_token1] = ACTIONS(641), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_else] = ACTIONS(641), + [sym_true] = ACTIONS(641), + [sym_primitive_type] = ACTIONS(641), + [anon_sym_for] = ACTIONS(641), + [anon_sym_break] = ACTIONS(641), + [aux_sym_preproc_include_token1] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_static] = ACTIONS(641), + [anon_sym_register] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_if] = ACTIONS(641), + [anon_sym_switch] = ACTIONS(641), + [sym_false] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(641), + [sym_identifier] = ACTIONS(641), + [ts_builtin_sym_end] = ACTIONS(643), + [anon_sym_return] = ACTIONS(641), + [anon_sym_continue] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(643), + [aux_sym_preproc_def_token1] = ACTIONS(641), + [anon_sym_auto] = ACTIONS(641), + [anon_sym_inline] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), }, [122] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(314), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(314), + [sym_math_expression] = STATE(314), + [sym_cast_expression] = STATE(314), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(314), + [sym_assignment_expression] = STATE(314), + [sym_relational_expression] = STATE(314), + [sym_shift_expression] = STATE(314), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(314), + [sym_bitwise_expression] = STATE(314), + [sym_equality_expression] = STATE(314), + [sym_sizeof_expression] = STATE(314), + [sym_compound_literal_expression] = STATE(314), + [sym_parenthesized_expression] = STATE(314), + [sym_char_literal] = STATE(314), + [sym_null] = ACTIONS(645), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(645), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(645), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [123] = { - [anon_sym_LPAREN2] = ACTIONS(679), - [sym_comment] = ACTIONS(3), + [aux_sym_concatenated_string_repeat1] = STATE(315), + [sym_string_literal] = STATE(315), + [anon_sym_LBRACK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_PERCENT] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(221), }, [124] = { - [sym_parenthesized_expression] = STATE(328), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [125] = { - [sym_parenthesized_expression] = STATE(329), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [126] = { + [anon_sym_case] = ACTIONS(679), + [sym_null] = ACTIONS(679), + [anon_sym_volatile] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_default] = ACTIONS(683), - [sym_identifier] = ACTIONS(683), - [anon_sym__Atomic] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_default] = ACTIONS(679), + [anon_sym__Atomic] = ACTIONS(679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(679), [sym_number_literal] = ACTIONS(681), - [anon_sym_restrict] = ACTIONS(683), - [anon_sym_typedef] = ACTIONS(683), + [anon_sym_restrict] = ACTIONS(679), + [anon_sym_extern] = ACTIONS(679), [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_signed] = ACTIONS(683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(679), [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_volatile] = ACTIONS(683), [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_extern] = ACTIONS(683), - [anon_sym_sizeof] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym___attribute__] = ACTIONS(679), + [anon_sym_sizeof] = ACTIONS(679), [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [sym_preproc_directive] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + [aux_sym_preproc_if_token1] = ACTIONS(679), [anon_sym_LPAREN2] = ACTIONS(681), - [anon_sym_long] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [sym_preproc_directive] = ACTIONS(683), - [aux_sym_preproc_if_token1] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_static] = ACTIONS(683), [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_else] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [aux_sym_preproc_include_token1] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_static] = ACTIONS(679), + [anon_sym_register] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(679), [anon_sym_STAR] = ACTIONS(681), - [anon_sym_if] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [aux_sym_preproc_include_token1] = ACTIONS(683), - [anon_sym_auto] = ACTIONS(683), - [anon_sym_inline] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_case] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [sym_comment] = ACTIONS(3), + [anon_sym_if] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [sym_identifier] = ACTIONS(679), [ts_builtin_sym_end] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_goto] = ACTIONS(683), + [anon_sym_return] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), [anon_sym_SEMI] = ACTIONS(681), - [aux_sym_preproc_def_token1] = ACTIONS(683), - [anon_sym_register] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), + [aux_sym_preproc_def_token1] = ACTIONS(679), + [anon_sym_auto] = ACTIONS(679), + [anon_sym_inline] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), }, [127] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(685), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_preproc_params] = STATE(332), + [sym_preproc_arg] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(687), }, [128] = { - [sym_string_literal] = STATE(332), - [aux_sym_concatenated_string_repeat1] = STATE(332), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [sym_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(689), }, [129] = { - [sym_do_statement] = STATE(129), - [sym_preproc_def] = STATE(129), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(129), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(129), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(129), - [sym_goto_statement] = STATE(129), - [sym__empty_declaration] = STATE(129), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(129), - [sym_switch_statement] = STATE(129), - [sym_for_statement] = STATE(129), - [sym_return_statement] = STATE(129), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(129), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(129), - [aux_sym_translation_unit_repeat1] = STATE(129), - [sym_break_statement] = STATE(129), - [sym_preproc_include] = STATE(129), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(129), - [sym_preproc_ifdef] = STATE(129), - [sym_linkage_specification] = STATE(129), - [sym_continue_statement] = STATE(129), - [sym_compound_statement] = STATE(129), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(129), - [sym_expression_statement] = STATE(129), - [sym_while_statement] = STATE(129), - [anon_sym_LPAREN2] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_long] = ACTIONS(697), - [anon_sym__Atomic] = ACTIONS(700), - [sym_primitive_type] = ACTIONS(703), - [sym_true] = ACTIONS(706), - [sym_identifier] = ACTIONS(709), - [anon_sym_for] = ACTIONS(712), - [sym_preproc_directive] = ACTIONS(715), - [aux_sym_preproc_if_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_static] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_if] = ACTIONS(736), - [anon_sym_while] = ACTIONS(739), - [anon_sym_switch] = ACTIONS(742), - [anon_sym_signed] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [sym_number_literal] = ACTIONS(751), - [anon_sym_return] = ACTIONS(754), - [sym_false] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(760), - [aux_sym_preproc_include_token1] = ACTIONS(763), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(769), - [anon_sym_union] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_unsigned] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_short] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_null] = ACTIONS(706), - [anon_sym_break] = ACTIONS(784), - [anon_sym_do] = ACTIONS(787), - [anon_sym_goto] = ACTIONS(790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(760), - [anon_sym_SEMI] = ACTIONS(793), - [ts_builtin_sym_end] = ACTIONS(796), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(733), - [anon_sym_register] = ACTIONS(724), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(801), + [sym_argument_list] = STATE(334), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(318), }, [130] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(333), - [sym_storage_class_specifier] = STATE(333), - [sym_type_qualifier] = STATE(333), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(691), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(691), + [anon_sym_restrict] = ACTIONS(691), + [anon_sym_register] = ACTIONS(691), + [anon_sym_extern] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(693), + [sym_identifier] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_LPAREN2] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym__Atomic] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_auto] = ACTIONS(691), + [anon_sym_inline] = ACTIONS(691), + [anon_sym___attribute__] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), }, [131] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(334), - [sym_storage_class_specifier] = STATE(334), - [sym_type_qualifier] = STATE(334), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(695), + [anon_sym_restrict] = ACTIONS(695), + [anon_sym_register] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(697), + [sym_identifier] = ACTIONS(695), + [anon_sym_const] = ACTIONS(695), + [anon_sym_LPAREN2] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym__Atomic] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_auto] = ACTIONS(695), + [anon_sym_inline] = ACTIONS(695), + [anon_sym___attribute__] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(697), }, [132] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(132), - [sym_storage_class_specifier] = STATE(132), - [sym_type_qualifier] = STATE(132), - [anon_sym_long] = ACTIONS(808), - [anon_sym__Atomic] = ACTIONS(810), - [sym_primitive_type] = ACTIONS(808), - [anon_sym_auto] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_inline] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(813), - [sym_identifier] = ACTIONS(808), - [anon_sym_union] = ACTIONS(808), - [anon_sym_unsigned] = ACTIONS(808), - [anon_sym_struct] = ACTIONS(808), - [anon_sym_short] = ACTIONS(808), - [anon_sym_static] = ACTIONS(813), - [anon_sym_restrict] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(808), - [anon_sym_enum] = ACTIONS(808), - [anon_sym_register] = ACTIONS(813), - [anon_sym_const] = ACTIONS(810), + [aux_sym_sized_type_specifier_repeat1] = STATE(132), + [anon_sym_unsigned] = ACTIONS(699), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_short] = ACTIONS(699), + [anon_sym_static] = ACTIONS(702), + [anon_sym_restrict] = ACTIONS(702), + [anon_sym_register] = ACTIONS(702), + [anon_sym_extern] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(699), + [anon_sym_long] = ACTIONS(699), + [sym_identifier] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym__Atomic] = ACTIONS(702), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_auto] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(702), + [anon_sym___attribute__] = ACTIONS(702), }, [133] = { - [anon_sym_LPAREN2] = ACTIONS(816), - [anon_sym_COLON] = ACTIONS(816), - [sym_identifier] = ACTIONS(818), - [anon_sym__Atomic] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(818), - [anon_sym_volatile] = ACTIONS(818), - [anon_sym_inline] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(816), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(818), - [anon_sym_restrict] = ACTIONS(818), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_register] = ACTIONS(818), - [anon_sym_const] = ACTIONS(818), + [anon_sym_case] = ACTIONS(706), + [sym_null] = ACTIONS(706), + [anon_sym_volatile] = ACTIONS(706), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(706), + [anon_sym_const] = ACTIONS(706), + [anon_sym_typedef] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(708), + [anon_sym_default] = ACTIONS(706), + [anon_sym__Atomic] = ACTIONS(706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(706), + [sym_number_literal] = ACTIONS(708), + [anon_sym_restrict] = ACTIONS(706), + [anon_sym_extern] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(706), + [anon_sym_signed] = ACTIONS(706), + [anon_sym_long] = ACTIONS(706), + [anon_sym_while] = ACTIONS(706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym___attribute__] = ACTIONS(706), + [anon_sym_sizeof] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsigned] = ACTIONS(706), + [anon_sym_short] = ACTIONS(706), + [anon_sym_do] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(708), + [sym_preproc_directive] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [aux_sym_preproc_if_token1] = ACTIONS(706), + [anon_sym_LPAREN2] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_else] = ACTIONS(706), + [sym_true] = ACTIONS(706), + [sym_primitive_type] = ACTIONS(706), + [anon_sym_for] = ACTIONS(706), + [anon_sym_break] = ACTIONS(706), + [aux_sym_preproc_include_token1] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_static] = ACTIONS(706), + [anon_sym_register] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [anon_sym_enum] = ACTIONS(706), + [sym_identifier] = ACTIONS(706), + [ts_builtin_sym_end] = ACTIONS(708), + [anon_sym_return] = ACTIONS(706), + [anon_sym_continue] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(708), + [aux_sym_preproc_def_token1] = ACTIONS(706), + [anon_sym_auto] = ACTIONS(706), + [anon_sym_inline] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), }, [134] = { - [anon_sym_LPAREN2] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(820), - [sym_identifier] = ACTIONS(822), - [anon_sym__Atomic] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_auto] = ACTIONS(822), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_inline] = ACTIONS(822), - [anon_sym_extern] = ACTIONS(822), - [anon_sym_LBRACK] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(822), - [anon_sym_restrict] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_register] = ACTIONS(822), - [anon_sym_const] = ACTIONS(822), + [aux_sym_concatenated_string_repeat1] = STATE(335), + [sym_string_literal] = STATE(335), + [anon_sym_PERCENT] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [135] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(135), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_long] = ACTIONS(826), - [anon_sym__Atomic] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_auto] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_inline] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [sym_identifier] = ACTIONS(829), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_static] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_signed] = ACTIONS(826), - [anon_sym_register] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), + [sym_continue_statement] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(135), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(135), + [sym_for_statement] = STATE(135), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(135), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(135), + [sym_return_statement] = STATE(135), + [sym_preproc_include] = STATE(135), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(135), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(135), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(135), + [sym_while_statement] = STATE(135), + [sym_preproc_def] = STATE(135), + [sym_goto_statement] = STATE(135), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(135), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(135), + [sym_expression_statement] = STATE(135), + [sym_do_statement] = STATE(135), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(135), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(135), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(135), + [sym_preproc_if] = STATE(135), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(135), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_union] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym_unsigned] = ACTIONS(723), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym_short] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_null] = ACTIONS(732), + [sym_identifier] = ACTIONS(735), + [anon_sym_do] = ACTIONS(738), + [anon_sym_goto] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(746), + [sym_preproc_directive] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(752), + [aux_sym_preproc_if_token1] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(726), + [anon_sym_LPAREN2] = ACTIONS(758), + [anon_sym_typedef] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym__Atomic] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(767), + [sym_true] = ACTIONS(732), + [anon_sym_for] = ACTIONS(770), + [anon_sym_break] = ACTIONS(773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(776), + [aux_sym_preproc_include_token1] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_static] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_register] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_if] = ACTIONS(791), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(797), + [anon_sym_signed] = ACTIONS(723), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_long] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_return] = ACTIONS(806), + [anon_sym_while] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(815), + [sym_number_literal] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(821), + [sym_false] = ACTIONS(732), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_inline] = ACTIONS(785), + [anon_sym___attribute__] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(803), }, [136] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(336), - [sym_logical_expression] = STATE(336), - [sym_bitwise_expression] = STATE(336), - [sym_cast_expression] = STATE(336), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(336), - [sym_char_literal] = STATE(336), - [sym_assignment_expression] = STATE(336), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(336), - [sym_math_expression] = STATE(336), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(336), - [sym_equality_expression] = STATE(336), - [sym_relational_expression] = STATE(336), - [sym_sizeof_expression] = STATE(336), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(336), - [sym_concatenated_string] = STATE(336), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(831), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(833), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(831), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(336), + [sym_attribute_specifier] = STATE(336), + [sym_type_qualifier] = STATE(336), + [sym_storage_class_specifier] = STATE(336), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [137] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(137), + [sym_attribute_specifier] = STATE(137), + [sym_type_qualifier] = STATE(137), + [sym_storage_class_specifier] = STATE(137), + [anon_sym_union] = ACTIONS(834), + [anon_sym_unsigned] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(836), + [anon_sym_short] = ACTIONS(834), + [anon_sym_static] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(836), + [anon_sym_register] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(839), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(834), + [anon_sym_signed] = ACTIONS(834), + [anon_sym_enum] = ACTIONS(834), + [anon_sym_long] = ACTIONS(834), + [sym_identifier] = ACTIONS(834), + [anon_sym_const] = ACTIONS(836), + [anon_sym__Atomic] = ACTIONS(836), + [sym_primitive_type] = ACTIONS(834), + [anon_sym_auto] = ACTIONS(839), + [anon_sym_inline] = ACTIONS(839), + [anon_sym___attribute__] = ACTIONS(842), + }, + [138] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(337), - [sym_bitwise_expression] = STATE(337), + [sym_math_expression] = STATE(337), [sym_cast_expression] = STATE(337), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(337), - [sym_char_literal] = STATE(337), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(337), [sym_assignment_expression] = STATE(337), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(337), [sym_shift_expression] = STATE(337), - [sym_math_expression] = STATE(337), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(337), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), [sym_equality_expression] = STATE(337), - [sym_relational_expression] = STATE(337), [sym_sizeof_expression] = STATE(337), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(337), [sym_parenthesized_expression] = STATE(337), - [sym_concatenated_string] = STATE(337), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(837), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(839), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(837), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [138] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(338), + [139] = { + [sym_concatenated_string] = STATE(338), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(338), - [sym_bitwise_expression] = STATE(338), + [sym_math_expression] = STATE(338), [sym_cast_expression] = STATE(338), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(338), - [sym_char_literal] = STATE(338), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(338), [sym_assignment_expression] = STATE(338), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(338), [sym_shift_expression] = STATE(338), - [sym_math_expression] = STATE(338), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(338), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(338), + [sym_bitwise_expression] = STATE(338), [sym_equality_expression] = STATE(338), - [sym_relational_expression] = STATE(338), [sym_sizeof_expression] = STATE(338), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(338), [sym_parenthesized_expression] = STATE(338), - [sym_concatenated_string] = STATE(338), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(841), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(338), + [sym_null] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(851), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(849), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(849), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [139] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(339), + [140] = { + [sym_concatenated_string] = STATE(339), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(339), - [sym_bitwise_expression] = STATE(339), + [sym_math_expression] = STATE(339), [sym_cast_expression] = STATE(339), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(339), - [sym_char_literal] = STATE(339), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(339), [sym_assignment_expression] = STATE(339), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(339), [sym_shift_expression] = STATE(339), - [sym_math_expression] = STATE(339), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(339), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(339), + [sym_bitwise_expression] = STATE(339), [sym_equality_expression] = STATE(339), - [sym_relational_expression] = STATE(339), [sym_sizeof_expression] = STATE(339), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(339), [sym_parenthesized_expression] = STATE(339), - [sym_concatenated_string] = STATE(339), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(33), - }, - [140] = { - [anon_sym_LPAREN2] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(336), + [sym_char_literal] = STATE(339), + [sym_null] = ACTIONS(853), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(855), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_DASH_GT] = ACTIONS(336), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(853), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(853), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [141] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(340), + [sym_concatenated_string] = STATE(340), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(340), - [sym_bitwise_expression] = STATE(340), + [sym_math_expression] = STATE(340), [sym_cast_expression] = STATE(340), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(340), - [sym_char_literal] = STATE(340), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(340), [sym_assignment_expression] = STATE(340), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(340), [sym_shift_expression] = STATE(340), - [sym_math_expression] = STATE(340), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(340), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(340), + [sym_bitwise_expression] = STATE(340), [sym_equality_expression] = STATE(340), - [sym_relational_expression] = STATE(340), [sym_sizeof_expression] = STATE(340), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(340), [sym_parenthesized_expression] = STATE(340), - [sym_concatenated_string] = STATE(340), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(851), + [sym_char_literal] = STATE(340), + [sym_null] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(33), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(857), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [142] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(341), - [sym_logical_expression] = STATE(341), - [sym_bitwise_expression] = STATE(341), - [sym_cast_expression] = STATE(341), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(341), - [sym_char_literal] = STATE(341), - [sym_assignment_expression] = STATE(341), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(341), - [sym_math_expression] = STATE(341), - [sym_call_expression] = STATE(34), - [sym_comma_expression] = STATE(342), - [sym_conditional_expression] = STATE(341), - [sym_equality_expression] = STATE(341), - [sym_relational_expression] = STATE(341), - [sym_sizeof_expression] = STATE(341), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(341), - [sym_concatenated_string] = STATE(341), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(33), + [sym_concatenated_string] = STATE(349), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(349), + [sym_math_expression] = STATE(349), + [sym_cast_expression] = STATE(349), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(349), + [sym_assignment_expression] = STATE(349), + [sym_relational_expression] = STATE(349), + [sym_shift_expression] = STATE(349), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(349), + [sym_bitwise_expression] = STATE(349), + [sym_equality_expression] = STATE(349), + [sym_sizeof_expression] = STATE(349), + [sym_compound_literal_expression] = STATE(349), + [sym_parenthesized_expression] = STATE(349), + [sym_char_literal] = STATE(349), + [sym_null] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(861), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [143] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(343), - [sym_logical_expression] = STATE(343), - [sym_bitwise_expression] = STATE(343), - [sym_cast_expression] = STATE(343), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(343), - [sym_char_literal] = STATE(343), - [sym_assignment_expression] = STATE(343), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(343), - [sym_math_expression] = STATE(343), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(343), - [sym_equality_expression] = STATE(343), - [sym_relational_expression] = STATE(343), - [sym_sizeof_expression] = STATE(343), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(343), - [sym_concatenated_string] = STATE(343), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(857), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(859), + [sym_concatenated_string] = STATE(350), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(350), + [sym_math_expression] = STATE(350), + [sym_cast_expression] = STATE(350), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(350), + [sym_assignment_expression] = STATE(350), + [sym_relational_expression] = STATE(350), + [sym_shift_expression] = STATE(350), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(350), + [sym_comma_expression] = STATE(351), + [sym_bitwise_expression] = STATE(350), + [sym_equality_expression] = STATE(350), + [sym_sizeof_expression] = STATE(350), + [sym_compound_literal_expression] = STATE(350), + [sym_parenthesized_expression] = STATE(350), + [sym_char_literal] = STATE(350), + [sym_null] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(883), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(33), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(881), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(881), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [144] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(352), + [sym_concatenated_string] = STATE(352), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(352), - [sym_bitwise_expression] = STATE(352), + [sym_math_expression] = STATE(352), [sym_cast_expression] = STATE(352), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(352), - [sym_char_literal] = STATE(352), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(352), [sym_assignment_expression] = STATE(352), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(352), [sym_shift_expression] = STATE(352), - [sym_math_expression] = STATE(352), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(352), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(352), + [sym_bitwise_expression] = STATE(352), [sym_equality_expression] = STATE(352), - [sym_relational_expression] = STATE(352), [sym_sizeof_expression] = STATE(352), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(352), [sym_parenthesized_expression] = STATE(352), - [sym_concatenated_string] = STATE(352), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(867), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(877), + [sym_char_literal] = STATE(352), + [sym_null] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(887), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(885), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [145] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(353), + [anon_sym_PERCENT] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_DASH_GT] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_CARET_EQ] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(549), + }, + [146] = { + [sym_concatenated_string] = STATE(353), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(353), - [sym_bitwise_expression] = STATE(353), + [sym_math_expression] = STATE(353), [sym_cast_expression] = STATE(353), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(353), - [sym_char_literal] = STATE(353), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(353), [sym_assignment_expression] = STATE(353), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(353), [sym_shift_expression] = STATE(353), - [sym_math_expression] = STATE(353), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(353), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(353), + [sym_bitwise_expression] = STATE(353), [sym_equality_expression] = STATE(353), - [sym_relational_expression] = STATE(353), [sym_sizeof_expression] = STATE(353), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(353), [sym_parenthesized_expression] = STATE(353), - [sym_concatenated_string] = STATE(353), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(883), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(353), + [sym_null] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(891), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(889), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [146] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(354), + [147] = { + [sym_concatenated_string] = STATE(354), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(354), - [sym_bitwise_expression] = STATE(354), + [sym_math_expression] = STATE(354), [sym_cast_expression] = STATE(354), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(354), - [sym_char_literal] = STATE(354), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(354), [sym_assignment_expression] = STATE(354), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(354), [sym_shift_expression] = STATE(354), - [sym_math_expression] = STATE(354), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(354), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(354), + [sym_bitwise_expression] = STATE(354), [sym_equality_expression] = STATE(354), - [sym_relational_expression] = STATE(354), [sym_sizeof_expression] = STATE(354), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(354), [sym_parenthesized_expression] = STATE(354), - [sym_concatenated_string] = STATE(354), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(885), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(887), + [sym_char_literal] = STATE(354), + [sym_null] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(895), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(893), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [148] = { + [sym_concatenated_string] = STATE(355), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(355), + [sym_math_expression] = STATE(355), + [sym_cast_expression] = STATE(355), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(355), + [sym_assignment_expression] = STATE(355), + [sym_relational_expression] = STATE(355), + [sym_shift_expression] = STATE(355), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(355), + [sym_bitwise_expression] = STATE(355), + [sym_equality_expression] = STATE(355), + [sym_sizeof_expression] = STATE(355), + [sym_compound_literal_expression] = STATE(355), + [sym_parenthesized_expression] = STATE(355), + [sym_char_literal] = STATE(355), + [sym_null] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(899), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(897), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [149] = { + [sym_identifier] = ACTIONS(901), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(33), }, - [147] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(363), - [sym_logical_expression] = STATE(363), - [sym_bitwise_expression] = STATE(363), - [sym_cast_expression] = STATE(363), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(363), - [sym_char_literal] = STATE(363), - [sym_assignment_expression] = STATE(363), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(363), - [sym_math_expression] = STATE(363), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(363), - [sym_equality_expression] = STATE(363), - [sym_relational_expression] = STATE(363), - [sym_sizeof_expression] = STATE(363), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(363), - [sym_concatenated_string] = STATE(363), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(895), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), + [150] = { + [sym_concatenated_string] = STATE(358), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(358), + [sym_math_expression] = STATE(358), + [sym_cast_expression] = STATE(358), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(358), + [sym_assignment_expression] = STATE(358), + [sym_relational_expression] = STATE(358), + [sym_shift_expression] = STATE(358), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(358), + [sym_bitwise_expression] = STATE(358), + [sym_equality_expression] = STATE(358), + [sym_sizeof_expression] = STATE(358), + [sym_compound_literal_expression] = STATE(358), + [sym_parenthesized_expression] = STATE(358), + [sym_char_literal] = STATE(358), + [sym_null] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(167), [sym_number_literal] = ACTIONS(905), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(895), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(903), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [148] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), + [151] = { + [sym_concatenated_string] = STATE(359), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(359), + [sym_math_expression] = STATE(359), + [sym_cast_expression] = STATE(359), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(359), + [sym_assignment_expression] = STATE(359), + [sym_relational_expression] = STATE(359), + [sym_shift_expression] = STATE(359), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(359), + [sym_bitwise_expression] = STATE(359), + [sym_equality_expression] = STATE(359), + [sym_sizeof_expression] = STATE(359), + [sym_compound_literal_expression] = STATE(359), + [sym_parenthesized_expression] = STATE(359), + [sym_char_literal] = STATE(359), [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(51), [sym_number_literal] = ACTIONS(911), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(33), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [149] = { - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_default] = ACTIONS(915), - [sym_identifier] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(913), - [sym_number_literal] = ACTIONS(913), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_while] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(915), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_sizeof] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_long] = ACTIONS(915), - [sym_true] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [aux_sym_preproc_if_token1] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [aux_sym_preproc_include_token1] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_else] = ACTIONS(915), - [anon_sym_case] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(913), - [anon_sym_break] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), + [152] = { + [sym_concatenated_string] = STATE(360), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(360), + [sym_math_expression] = STATE(360), + [sym_cast_expression] = STATE(360), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(360), + [sym_assignment_expression] = STATE(360), + [sym_relational_expression] = STATE(360), + [sym_shift_expression] = STATE(360), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(360), + [sym_bitwise_expression] = STATE(360), + [sym_equality_expression] = STATE(360), + [sym_sizeof_expression] = STATE(360), + [sym_compound_literal_expression] = STATE(360), + [sym_parenthesized_expression] = STATE(360), + [sym_char_literal] = STATE(360), + [sym_null] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(913), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [150] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(365), - [sym_logical_expression] = STATE(365), - [sym_bitwise_expression] = STATE(365), - [sym_cast_expression] = STATE(365), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(365), - [sym_char_literal] = STATE(365), - [sym_assignment_expression] = STATE(365), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(365), - [sym_math_expression] = STATE(365), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(365), - [sym_equality_expression] = STATE(365), - [sym_relational_expression] = STATE(365), - [sym_sizeof_expression] = STATE(365), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(365), - [sym_concatenated_string] = STATE(365), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), + [153] = { + [sym_concatenated_string] = STATE(369), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(369), + [sym_math_expression] = STATE(369), + [sym_cast_expression] = STATE(369), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(369), + [sym_assignment_expression] = STATE(369), + [sym_relational_expression] = STATE(369), + [sym_shift_expression] = STATE(369), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(369), + [sym_bitwise_expression] = STATE(369), + [sym_equality_expression] = STATE(369), + [sym_sizeof_expression] = STATE(369), + [sym_compound_literal_expression] = STATE(369), + [sym_parenthesized_expression] = STATE(369), + [sym_char_literal] = STATE(369), [sym_null] = ACTIONS(917), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(921), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), [sym_false] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(33), - }, - [151] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(366), - [sym_logical_expression] = STATE(366), - [sym_bitwise_expression] = STATE(366), - [sym_cast_expression] = STATE(366), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(366), - [sym_char_literal] = STATE(366), - [sym_assignment_expression] = STATE(366), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(366), - [sym_math_expression] = STATE(366), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(366), - [sym_equality_expression] = STATE(366), - [sym_relational_expression] = STATE(366), - [sym_sizeof_expression] = STATE(366), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(366), - [sym_concatenated_string] = STATE(366), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(921), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(33), - }, - [152] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(925), - }, - [153] = { - [anon_sym_LPAREN2] = ACTIONS(927), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(927), - [anon_sym_CARET_EQ] = ACTIONS(927), - [anon_sym_LT_LT_EQ] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_DASH_EQ] = ACTIONS(927), - [anon_sym_SLASH_EQ] = ACTIONS(927), - [anon_sym_GT_GT_EQ] = ACTIONS(927), - [anon_sym_STAR_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_PIPE_EQ] = ACTIONS(927), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(927), - [anon_sym_AMP_EQ] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_DOT] = ACTIONS(927), + [sym_true] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [154] = { - [sym_function_declarator] = STATE(369), - [sym_array_declarator] = STATE(369), - [sym_pointer_declarator] = STATE(369), - [sym__declarator] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(939), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_AMP_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_LT_LT_EQ] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_GT_GT_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(939), }, [155] = { - [sym_type_qualifier] = STATE(371), [sym_function_declarator] = STATE(370), - [sym_array_declarator] = STATE(370), + [sym__declarator] = STATE(370), + [sym_type_qualifier] = STATE(371), [sym_pointer_declarator] = STATE(370), + [sym_array_declarator] = STATE(370), [aux_sym_type_definition_repeat1] = STATE(371), - [sym__declarator] = STATE(370), - [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(941), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(935), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(330), }, [156] = { - [anon_sym_LPAREN2] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_long] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_identifier] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [sym_preproc_directive] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_static] = ACTIONS(939), - [anon_sym_restrict] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_if] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_signed] = ACTIONS(939), - [anon_sym_enum] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [sym_number_literal] = ACTIONS(937), - [anon_sym_return] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(937), - [aux_sym_preproc_include_token1] = ACTIONS(939), - [anon_sym_auto] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(939), - [anon_sym_inline] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_sizeof] = ACTIONS(939), - [anon_sym_union] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_short] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym_null] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_goto] = ACTIONS(939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(937), - [ts_builtin_sym_end] = ACTIONS(937), - [aux_sym_preproc_def_token1] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_register] = ACTIONS(939), + [sym_function_declarator] = STATE(373), + [sym__declarator] = STATE(373), + [sym_pointer_declarator] = STATE(373), + [sym_array_declarator] = STATE(373), + [sym_identifier] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(332), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(937), }, [157] = { - [sym_compound_statement] = STATE(377), - [aux_sym_declaration_repeat1] = STATE(378), - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_sizeof] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_null] = ACTIONS(949), + [sym_identifier] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [ts_builtin_sym_end] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym__Atomic] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_if] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_return] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [sym_number_literal] = ACTIONS(947), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_inline] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), }, [158] = { - [aux_sym_declaration_repeat1] = STATE(378), + [sym_compound_statement] = STATE(379), + [aux_sym_declaration_repeat1] = STATE(380), + [sym_parameter_list] = STATE(381), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(959), }, [159] = { + [aux_sym_declaration_repeat1] = STATE(380), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(959), }, [160] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(381), - [sym_logical_expression] = STATE(381), - [sym_bitwise_expression] = STATE(381), - [sym_cast_expression] = STATE(381), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(381), - [sym_char_literal] = STATE(381), - [sym_assignment_expression] = STATE(381), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(381), - [sym_math_expression] = STATE(381), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(381), - [sym_equality_expression] = STATE(381), - [sym_relational_expression] = STATE(381), - [sym_sizeof_expression] = STATE(381), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(381), - [sym_concatenated_string] = STATE(381), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym__declaration_specifiers_repeat1] = STATE(382), + [sym_attribute_specifier] = STATE(382), + [sym_type_qualifier] = STATE(382), + [sym_storage_class_specifier] = STATE(382), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [161] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(107), - }, - [162] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(382), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), - }, - [163] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(384), + [sym_pointer_expression] = STATE(119), [sym_logical_expression] = STATE(384), - [sym_bitwise_expression] = STATE(384), - [sym_cast_expression] = STATE(384), - [sym_field_expression] = STATE(384), - [sym_compound_literal_expression] = STATE(384), - [sym_char_literal] = STATE(384), - [sym_assignment_expression] = STATE(384), - [sym_pointer_expression] = STATE(384), - [sym_shift_expression] = STATE(384), [sym_math_expression] = STATE(384), - [sym_call_expression] = STATE(384), - [sym_conditional_expression] = STATE(384), + [sym_cast_expression] = STATE(384), + [sym_declaration] = STATE(383), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(384), + [sym_bitwise_expression] = STATE(384), [sym_equality_expression] = STATE(384), - [sym_relational_expression] = STATE(384), [sym_sizeof_expression] = STATE(384), - [sym_subscript_expression] = STATE(384), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(384), [sym_parenthesized_expression] = STATE(384), [sym_concatenated_string] = STATE(384), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(957), - [sym_identifier] = ACTIONS(959), - [sym_true] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(107), + [sym_char_literal] = STATE(384), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(384), + [sym_assignment_expression] = STATE(384), + [sym_relational_expression] = STATE(384), + [sym_shift_expression] = STATE(384), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), + }, + [162] = { + [sym_while_statement] = STATE(389), + [sym_continue_statement] = STATE(389), + [sym_goto_statement] = STATE(389), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(389), + [sym_expression_statement] = STATE(389), + [sym_if_statement] = STATE(389), + [sym_do_statement] = STATE(389), + [sym_for_statement] = STATE(389), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(389), + [sym_return_statement] = STATE(389), + [sym_break_statement] = STATE(389), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(389), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [163] = { + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [164] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(107), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [165] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_case] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_default] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [sym_number_literal] = ACTIONS(979), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_sizeof] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(979), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_else] = ACTIONS(977), + [sym_true] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_static] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_if] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [sym_identifier] = ACTIONS(977), + [ts_builtin_sym_end] = ACTIONS(979), + [anon_sym_return] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), }, [166] = { - [sym_string_literal] = STATE(385), - [aux_sym_concatenated_string_repeat1] = STATE(385), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_RPAREN] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_union] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym_unsigned] = ACTIONS(723), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym_short] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_null] = ACTIONS(732), + [sym_identifier] = ACTIONS(981), + [anon_sym_do] = ACTIONS(738), + [anon_sym_goto] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(746), + [sym_preproc_directive] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(752), + [aux_sym_preproc_if_token1] = ACTIONS(755), + [anon_sym_const] = ACTIONS(726), + [anon_sym_LPAREN2] = ACTIONS(758), + [anon_sym_typedef] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym__Atomic] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(767), + [sym_true] = ACTIONS(732), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(776), + [aux_sym_preproc_include_token1] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_static] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_register] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_if] = ACTIONS(987), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(797), + [anon_sym_signed] = ACTIONS(723), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_long] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_return] = ACTIONS(806), + [anon_sym_while] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(815), + [sym_number_literal] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(821), + [sym_false] = ACTIONS(732), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_inline] = ACTIONS(785), + [anon_sym___attribute__] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(803), }, [167] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(397), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_identifier] = ACTIONS(993), + [sym_comment] = ACTIONS(3), }, [168] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(995), + [sym_preproc_arg] = ACTIONS(997), }, [169] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(398), - [sym_logical_expression] = STATE(398), - [sym_bitwise_expression] = STATE(398), - [sym_cast_expression] = STATE(398), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(398), - [sym_char_literal] = STATE(398), - [sym_assignment_expression] = STATE(398), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(398), - [sym_math_expression] = STATE(398), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(398), - [sym_equality_expression] = STATE(398), - [sym_relational_expression] = STATE(398), - [sym_sizeof_expression] = STATE(398), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(398), - [sym_concatenated_string] = STATE(398), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(999), }, [170] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(399), - [sym_logical_expression] = STATE(399), - [sym_bitwise_expression] = STATE(399), - [sym_cast_expression] = STATE(399), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(399), - [sym_char_literal] = STATE(399), - [sym_assignment_expression] = STATE(399), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(399), - [sym_math_expression] = STATE(399), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(399), - [sym_equality_expression] = STATE(399), - [sym_relational_expression] = STATE(399), - [sym_sizeof_expression] = STATE(399), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(399), - [sym_concatenated_string] = STATE(399), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_volatile] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_restrict] = ACTIONS(1001), + [anon_sym_register] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym__Atomic] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_auto] = ACTIONS(1001), + [anon_sym_inline] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1003), }, [171] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(400), - [sym_char_literal] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(107), + [sym_identifier] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), }, [172] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(401), - [sym_logical_expression] = STATE(401), - [sym_bitwise_expression] = STATE(401), - [sym_cast_expression] = STATE(401), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(401), - [sym_char_literal] = STATE(401), - [sym_assignment_expression] = STATE(401), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(401), - [sym_math_expression] = STATE(401), - [sym_call_expression] = STATE(54), - [sym_comma_expression] = STATE(342), - [sym_conditional_expression] = STATE(401), - [sym_equality_expression] = STATE(401), - [sym_relational_expression] = STATE(401), - [sym_sizeof_expression] = STATE(401), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(401), - [sym_concatenated_string] = STATE(401), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym__declaration_specifiers_repeat1] = STATE(396), + [sym_attribute_specifier] = STATE(396), + [sym_type_qualifier] = STATE(396), + [sym_storage_class_specifier] = STATE(396), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(336), + [sym_identifier] = ACTIONS(338), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [173] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(402), - [sym_logical_expression] = STATE(402), - [sym_bitwise_expression] = STATE(402), - [sym_cast_expression] = STATE(402), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(402), - [sym_char_literal] = STATE(402), - [sym_assignment_expression] = STATE(402), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(402), - [sym_math_expression] = STATE(402), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(402), - [sym_equality_expression] = STATE(402), - [sym_relational_expression] = STATE(402), - [sym_sizeof_expression] = STATE(402), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(402), - [sym_concatenated_string] = STATE(402), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(107), + [sym__declaration_specifiers] = STATE(176), + [sym_preproc_def] = STATE(398), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(398), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(398), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(398), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(398), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(398), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(398), + [sym_field_declaration] = STATE(398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(350), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(356), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [anon_sym_RBRACE] = ACTIONS(1007), + [aux_sym_preproc_ifdef_token2] = ACTIONS(350), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [174] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(403), - [sym_logical_expression] = STATE(403), - [sym_bitwise_expression] = STATE(403), - [sym_cast_expression] = STATE(403), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(403), - [sym_char_literal] = STATE(403), - [sym_assignment_expression] = STATE(403), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(403), - [sym_math_expression] = STATE(403), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(403), - [sym_equality_expression] = STATE(403), - [sym_relational_expression] = STATE(403), - [sym_sizeof_expression] = STATE(403), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(403), - [sym_concatenated_string] = STATE(403), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(985), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym_sized_type_specifier_repeat1] = STATE(399), + [anon_sym_unsigned] = ACTIONS(1009), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_short] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(1009), + [sym_identifier] = ACTIONS(279), + [anon_sym_long] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym__Atomic] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym___attribute__] = ACTIONS(275), }, [175] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(404), - [sym_logical_expression] = STATE(404), - [sym_bitwise_expression] = STATE(404), - [sym_cast_expression] = STATE(404), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(404), - [sym_char_literal] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(404), - [sym_math_expression] = STATE(404), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(404), - [sym_equality_expression] = STATE(404), - [sym_relational_expression] = STATE(404), - [sym_sizeof_expression] = STATE(404), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(404), - [sym_concatenated_string] = STATE(404), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(989), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(879), + [sym_struct_specifier] = STATE(400), + [sym_macro_type_specifier] = STATE(400), + [sym_attribute_specifier] = STATE(137), + [sym_type_qualifier] = STATE(137), + [sym_union_specifier] = STATE(400), + [sym__type_specifier] = STATE(400), + [sym_sized_type_specifier] = STATE(400), + [sym_enum_specifier] = STATE(400), + [aux_sym__declaration_specifiers_repeat1] = STATE(137), + [sym_storage_class_specifier] = STATE(137), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(352), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1011), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [176] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(405), - [sym_logical_expression] = STATE(405), - [sym_bitwise_expression] = STATE(405), - [sym_cast_expression] = STATE(405), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(405), - [sym_char_literal] = STATE(405), - [sym_assignment_expression] = STATE(405), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(405), - [sym_math_expression] = STATE(405), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(405), - [sym_equality_expression] = STATE(405), - [sym_relational_expression] = STATE(405), - [sym_sizeof_expression] = STATE(405), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(405), - [sym_concatenated_string] = STATE(405), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(993), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(107), + [sym_pointer_field_declarator] = STATE(407), + [sym_array_field_declarator] = STATE(407), + [sym_bitfield_clause] = STATE(406), + [sym_function_field_declarator] = STATE(407), + [sym__field_declarator] = STATE(407), + [sym_identifier] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), }, [177] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(406), - [sym_logical_expression] = STATE(406), - [sym_bitwise_expression] = STATE(406), - [sym_cast_expression] = STATE(406), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(406), - [sym_char_literal] = STATE(406), - [sym_assignment_expression] = STATE(406), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(406), - [sym_math_expression] = STATE(406), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(406), - [sym_equality_expression] = STATE(406), - [sym_relational_expression] = STATE(406), - [sym_sizeof_expression] = STATE(406), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(406), - [sym_concatenated_string] = STATE(406), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(997), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_volatile] = ACTIONS(1023), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_restrict] = ACTIONS(1023), + [anon_sym_register] = ACTIONS(1023), + [anon_sym_extern] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym__Atomic] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_auto] = ACTIONS(1023), + [anon_sym_inline] = ACTIONS(1023), + [anon_sym___attribute__] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1025), }, [178] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(911), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(1027), }, [179] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(407), - [sym_logical_expression] = STATE(407), - [sym_bitwise_expression] = STATE(407), - [sym_cast_expression] = STATE(407), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(407), - [sym_char_literal] = STATE(407), - [sym_assignment_expression] = STATE(407), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(407), - [sym_math_expression] = STATE(407), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(407), - [sym_equality_expression] = STATE(407), - [sym_relational_expression] = STATE(407), - [sym_sizeof_expression] = STATE(407), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(407), - [sym_concatenated_string] = STATE(407), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(1001), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_volatile] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_signed] = ACTIONS(1029), + [anon_sym_long] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsigned] = ACTIONS(1029), + [anon_sym_short] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1031), + [sym_primitive_type] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_auto] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1031), }, [180] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(408), - [sym_logical_expression] = STATE(408), - [sym_bitwise_expression] = STATE(408), - [sym_cast_expression] = STATE(408), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(408), - [sym_char_literal] = STATE(408), - [sym_assignment_expression] = STATE(408), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(408), - [sym_math_expression] = STATE(408), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(408), - [sym_equality_expression] = STATE(408), - [sym_relational_expression] = STATE(408), - [sym_sizeof_expression] = STATE(408), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(408), - [sym_concatenated_string] = STATE(408), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym_string_literal_repeat1] = STATE(180), + [aux_sym_string_literal_token1] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(1033), }, [181] = { - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_CARET_EQ] = ACTIONS(1007), - [anon_sym_LT_LT_EQ] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1007), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_GT_GT_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE_EQ] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_else] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1007), - [anon_sym_AMP_EQ] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1009), - [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), }, [182] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_while_statement] = STATE(414), + [sym_continue_statement] = STATE(414), + [sym_goto_statement] = STATE(414), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(414), + [sym_expression_statement] = STATE(414), + [sym_if_statement] = STATE(414), + [sym_do_statement] = STATE(414), + [sym_for_statement] = STATE(414), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(414), + [sym_return_statement] = STATE(414), + [sym_break_statement] = STATE(414), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(414), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [183] = { - [sym_type_qualifier] = STATE(183), - [aux_sym_type_definition_repeat1] = STATE(183), - [anon_sym_short] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1019), - [anon_sym_long] = ACTIONS(1017), - [anon_sym__Atomic] = ACTIONS(1019), - [sym_primitive_type] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1017), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_signed] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_unsigned] = ACTIONS(1017), - [anon_sym_struct] = ACTIONS(1017), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [184] = { - [sym_abstract_function_declarator] = STATE(413), - [sym__abstract_declarator] = STATE(413), - [sym_abstract_array_declarator] = STATE(413), - [sym_abstract_pointer_declarator] = STATE(413), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(412), - [aux_sym_type_definition_repeat1] = STATE(412), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [185] = { - [sym_string_literal] = STATE(414), - [aux_sym_concatenated_string_repeat1] = STATE(414), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(416), + [sym_math_expression] = STATE(416), + [sym_cast_expression] = STATE(416), + [sym_declaration] = STATE(415), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(416), + [sym_bitwise_expression] = STATE(416), + [sym_equality_expression] = STATE(416), + [sym_sizeof_expression] = STATE(416), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(416), + [sym_parenthesized_expression] = STATE(416), + [sym_concatenated_string] = STATE(416), + [sym_char_literal] = STATE(416), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(416), + [sym_assignment_expression] = STATE(416), + [sym_relational_expression] = STATE(416), + [sym_shift_expression] = STATE(416), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [186] = { - [sym_macro_type_specifier] = STATE(417), - [sym_abstract_array_declarator] = STATE(421), - [sym__type_specifier] = STATE(417), - [aux_sym__declaration_specifiers_repeat1] = STATE(418), - [sym_sized_type_specifier] = STATE(417), - [sym_parameter_declaration] = STATE(415), - [sym_abstract_pointer_declarator] = STATE(421), - [sym_storage_class_specifier] = STATE(418), - [sym_type_qualifier] = STATE(418), - [sym_struct_specifier] = STATE(417), - [sym_union_specifier] = STATE(417), - [sym_parameter_list] = STATE(190), - [sym_abstract_function_declarator] = STATE(421), - [sym_enum_specifier] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(419), - [sym__declaration_specifiers] = STATE(420), - [sym__abstract_declarator] = STATE(421), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(11), + [sym_parenthesized_expression] = STATE(417), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [187] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(424), - [sym_logical_expression] = STATE(424), - [sym_bitwise_expression] = STATE(424), - [sym_cast_expression] = STATE(424), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(424), - [sym_char_literal] = STATE(424), - [sym_assignment_expression] = STATE(424), - [sym_type_qualifier] = STATE(425), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(424), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(424), - [aux_sym_type_definition_repeat1] = STATE(425), - [sym_conditional_expression] = STATE(424), - [sym_equality_expression] = STATE(424), - [sym_relational_expression] = STATE(424), - [sym_sizeof_expression] = STATE(424), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(424), - [sym_concatenated_string] = STATE(424), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1032), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_case] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [sym_number_literal] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1054), + [sym_true] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), }, [188] = { - [sym_abstract_function_declarator] = STATE(427), - [sym__abstract_declarator] = STATE(427), - [sym_abstract_array_declarator] = STATE(427), - [sym_abstract_pointer_declarator] = STATE(427), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(426), - [aux_sym_type_definition_repeat1] = STATE(426), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_null] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [ts_builtin_sym_end] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [sym_number_literal] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), }, [189] = { - [sym_abstract_function_declarator] = STATE(413), - [sym__abstract_declarator] = STATE(413), - [sym_abstract_array_declarator] = STATE(413), - [sym_abstract_pointer_declarator] = STATE(413), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(428), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1062), }, [190] = { - [anon_sym_LPAREN2] = ACTIONS(1042), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(420), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [191] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1044), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [192] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(192), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_long] = ACTIONS(1046), - [anon_sym__Atomic] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(829), - [sym_identifier] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_unsigned] = ACTIONS(1046), - [anon_sym_short] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_signed] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_const] = ACTIONS(829), + [aux_sym_concatenated_string_repeat1] = STATE(421), + [sym_string_literal] = STATE(421), + [anon_sym_PERCENT] = ACTIONS(712), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [193] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [194] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(119), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(422), + [sym_pointer_expression] = STATE(422), + [sym_logical_expression] = STATE(422), + [sym_math_expression] = STATE(422), + [sym_cast_expression] = STATE(422), + [sym_field_expression] = STATE(422), + [sym_conditional_expression] = STATE(422), + [sym_assignment_expression] = STATE(422), + [sym_relational_expression] = STATE(422), + [sym_shift_expression] = STATE(422), + [sym_subscript_expression] = STATE(422), + [sym_call_expression] = STATE(422), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(422), + [sym_bitwise_expression] = STATE(422), + [sym_equality_expression] = STATE(422), + [sym_sizeof_expression] = STATE(422), + [sym_compound_literal_expression] = STATE(422), + [sym_parenthesized_expression] = STATE(422), + [sym_char_literal] = STATE(422), + [sym_null] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1070), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [195] = { - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_default] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_signed] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_sizeof] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsigned] = ACTIONS(1053), - [anon_sym_short] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_primitive_type] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [sym_preproc_directive] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1053), - [anon_sym_auto] = ACTIONS(1053), - [anon_sym_inline] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_case] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1053), - [anon_sym_register] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), + [sym_concatenated_string] = STATE(423), + [sym_pointer_expression] = STATE(423), + [sym_logical_expression] = STATE(423), + [sym_math_expression] = STATE(423), + [sym_cast_expression] = STATE(423), + [sym_field_expression] = STATE(423), + [sym_conditional_expression] = STATE(423), + [sym_assignment_expression] = STATE(423), + [sym_relational_expression] = STATE(423), + [sym_shift_expression] = STATE(423), + [sym_subscript_expression] = STATE(423), + [sym_call_expression] = STATE(423), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(423), + [sym_bitwise_expression] = STATE(423), + [sym_equality_expression] = STATE(423), + [sym_sizeof_expression] = STATE(423), + [sym_compound_literal_expression] = STATE(423), + [sym_parenthesized_expression] = STATE(423), + [sym_char_literal] = STATE(423), + [sym_null] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [196] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(424), + [sym_pointer_expression] = STATE(424), + [sym_logical_expression] = STATE(424), + [sym_math_expression] = STATE(424), + [sym_cast_expression] = STATE(424), + [sym_field_expression] = STATE(424), + [sym_conditional_expression] = STATE(424), + [sym_assignment_expression] = STATE(424), + [sym_relational_expression] = STATE(424), + [sym_shift_expression] = STATE(424), + [sym_subscript_expression] = STATE(424), + [sym_call_expression] = STATE(424), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(424), + [sym_bitwise_expression] = STATE(424), + [sym_equality_expression] = STATE(424), + [sym_sizeof_expression] = STATE(424), + [sym_compound_literal_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(424), + [sym_char_literal] = STATE(424), + [sym_null] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [197] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_CARET_EQ] = ACTIONS(545), - [anon_sym_LT_LT_EQ] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_GT_GT_EQ] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_AMP_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(425), + [sym_pointer_expression] = STATE(425), + [sym_logical_expression] = STATE(425), + [sym_math_expression] = STATE(425), + [sym_cast_expression] = STATE(425), + [sym_field_expression] = STATE(425), + [sym_conditional_expression] = STATE(425), + [sym_assignment_expression] = STATE(425), + [sym_relational_expression] = STATE(425), + [sym_shift_expression] = STATE(425), + [sym_subscript_expression] = STATE(425), + [sym_call_expression] = STATE(425), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(425), + [sym_bitwise_expression] = STATE(425), + [sym_equality_expression] = STATE(425), + [sym_sizeof_expression] = STATE(425), + [sym_compound_literal_expression] = STATE(425), + [sym_parenthesized_expression] = STATE(425), + [sym_char_literal] = STATE(425), + [sym_null] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [198] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(433), - [sym_logical_expression] = STATE(433), - [sym_bitwise_expression] = STATE(433), - [sym_cast_expression] = STATE(433), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(433), - [sym_char_literal] = STATE(433), - [sym_assignment_expression] = STATE(433), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(433), - [sym_math_expression] = STATE(433), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(433), - [sym_equality_expression] = STATE(433), - [sym_relational_expression] = STATE(433), - [sym_sizeof_expression] = STATE(433), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(433), - [sym_concatenated_string] = STATE(433), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(1061), - [sym_false] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(426), + [sym_pointer_expression] = STATE(426), + [sym_logical_expression] = STATE(426), + [sym_math_expression] = STATE(426), + [sym_cast_expression] = STATE(426), + [sym_field_expression] = STATE(426), + [sym_conditional_expression] = STATE(426), + [sym_assignment_expression] = STATE(426), + [sym_relational_expression] = STATE(426), + [sym_shift_expression] = STATE(426), + [sym_subscript_expression] = STATE(426), + [sym_call_expression] = STATE(426), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(426), + [sym_bitwise_expression] = STATE(426), + [sym_equality_expression] = STATE(426), + [sym_sizeof_expression] = STATE(426), + [sym_compound_literal_expression] = STATE(426), + [sym_parenthesized_expression] = STATE(426), + [sym_char_literal] = STATE(426), + [sym_null] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [199] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(427), + [sym_pointer_expression] = STATE(427), + [sym_logical_expression] = STATE(427), + [sym_math_expression] = STATE(427), + [sym_cast_expression] = STATE(427), + [sym_field_expression] = STATE(427), + [sym_conditional_expression] = STATE(427), + [sym_assignment_expression] = STATE(427), + [sym_relational_expression] = STATE(427), + [sym_shift_expression] = STATE(427), + [sym_subscript_expression] = STATE(427), + [sym_call_expression] = STATE(427), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(427), + [sym_bitwise_expression] = STATE(427), + [sym_equality_expression] = STATE(427), + [sym_sizeof_expression] = STATE(427), + [sym_compound_literal_expression] = STATE(427), + [sym_parenthesized_expression] = STATE(427), + [sym_char_literal] = STATE(427), + [sym_null] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [200] = { - [sym__declarator] = STATE(436), - [sym_function_declarator] = STATE(436), - [sym_array_declarator] = STATE(436), - [sym_pointer_declarator] = STATE(436), - [sym_init_declarator] = STATE(158), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1067), + [sym_concatenated_string] = STATE(428), + [sym_pointer_expression] = STATE(428), + [sym_logical_expression] = STATE(428), + [sym_math_expression] = STATE(428), + [sym_cast_expression] = STATE(428), + [sym_field_expression] = STATE(428), + [sym_conditional_expression] = STATE(428), + [sym_assignment_expression] = STATE(428), + [sym_relational_expression] = STATE(428), + [sym_shift_expression] = STATE(428), + [sym_subscript_expression] = STATE(428), + [sym_call_expression] = STATE(428), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(428), + [sym_bitwise_expression] = STATE(428), + [sym_equality_expression] = STATE(428), + [sym_sizeof_expression] = STATE(428), + [sym_compound_literal_expression] = STATE(428), + [sym_parenthesized_expression] = STATE(428), + [sym_char_literal] = STATE(428), + [sym_null] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [201] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(437), - [sym_storage_class_specifier] = STATE(437), - [sym_type_qualifier] = STATE(437), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(273), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(429), + [sym_pointer_expression] = STATE(429), + [sym_logical_expression] = STATE(429), + [sym_math_expression] = STATE(429), + [sym_cast_expression] = STATE(429), + [sym_field_expression] = STATE(429), + [sym_conditional_expression] = STATE(429), + [sym_assignment_expression] = STATE(429), + [sym_relational_expression] = STATE(429), + [sym_shift_expression] = STATE(429), + [sym_subscript_expression] = STATE(429), + [sym_call_expression] = STATE(429), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(429), + [sym_bitwise_expression] = STATE(429), + [sym_equality_expression] = STATE(429), + [sym_sizeof_expression] = STATE(429), + [sym_compound_literal_expression] = STATE(429), + [sym_parenthesized_expression] = STATE(429), + [sym_char_literal] = STATE(429), + [sym_null] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [202] = { - [sym_union_specifier] = STATE(438), - [sym_macro_type_specifier] = STATE(438), - [sym__type_specifier] = STATE(438), - [sym_sized_type_specifier] = STATE(438), - [aux_sym__declaration_specifiers_repeat1] = STATE(132), - [sym_enum_specifier] = STATE(438), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_storage_class_specifier] = STATE(132), - [sym_type_qualifier] = STATE(132), - [sym_struct_specifier] = STATE(438), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1069), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(426), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(426), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(430), + [sym_pointer_expression] = STATE(430), + [sym_logical_expression] = STATE(430), + [sym_math_expression] = STATE(430), + [sym_cast_expression] = STATE(430), + [sym_field_expression] = STATE(430), + [sym_conditional_expression] = STATE(430), + [sym_assignment_expression] = STATE(430), + [sym_relational_expression] = STATE(430), + [sym_shift_expression] = STATE(430), + [sym_subscript_expression] = STATE(430), + [sym_call_expression] = STATE(430), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(430), + [sym_bitwise_expression] = STATE(430), + [sym_equality_expression] = STATE(430), + [sym_sizeof_expression] = STATE(430), + [sym_compound_literal_expression] = STATE(430), + [sym_parenthesized_expression] = STATE(430), + [sym_char_literal] = STATE(430), + [sym_null] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [203] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(439), - [anon_sym_LPAREN2] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_long] = ACTIONS(1071), - [anon_sym_auto] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym_inline] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_unsigned] = ACTIONS(1071), - [anon_sym_short] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_signed] = ACTIONS(1071), - [anon_sym_register] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), + [sym_concatenated_string] = STATE(431), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(431), + [sym_math_expression] = STATE(431), + [sym_cast_expression] = STATE(431), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(431), + [sym_assignment_expression] = STATE(431), + [sym_relational_expression] = STATE(431), + [sym_shift_expression] = STATE(431), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(431), + [sym_bitwise_expression] = STATE(431), + [sym_equality_expression] = STATE(431), + [sym_sizeof_expression] = STATE(431), + [sym_compound_literal_expression] = STATE(431), + [sym_parenthesized_expression] = STATE(431), + [sym_char_literal] = STATE(431), + [sym_null] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1106), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [204] = { - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1073), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1073), - [sym_null] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1073), - [ts_builtin_sym_end] = ACTIONS(1073), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_register] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), + [sym_continue_statement] = STATE(433), + [sym_preproc_function_def] = STATE(433), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(433), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(433), + [sym_for_statement] = STATE(433), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(433), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(433), + [sym_return_statement] = STATE(433), + [sym_preproc_include] = STATE(433), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(433), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(433), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(433), + [sym_while_statement] = STATE(433), + [sym_preproc_def] = STATE(433), + [sym_goto_statement] = STATE(433), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(433), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(433), + [sym_expression_statement] = STATE(433), + [sym_do_statement] = STATE(433), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(433), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(433), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(433), + [sym_preproc_if] = STATE(433), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(433), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [205] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_while_statement] = STATE(434), + [sym_continue_statement] = STATE(434), + [sym_goto_statement] = STATE(434), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(434), + [sym_expression_statement] = STATE(434), + [sym_if_statement] = STATE(434), + [sym_do_statement] = STATE(434), + [sym_for_statement] = STATE(434), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(434), + [sym_return_statement] = STATE(434), + [sym_break_statement] = STATE(434), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(434), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [206] = { - [anon_sym_LPAREN2] = ACTIONS(1079), + [sym_identifier] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_do_statement] = STATE(464), - [sym_preproc_def] = STATE(464), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_preproc_function_def] = STATE(464), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_function_definition] = STATE(464), - [sym_char_literal] = STATE(461), - [sym_declaration] = STATE(464), - [sym_goto_statement] = STATE(464), - [sym__empty_declaration] = STATE(464), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(464), - [sym_switch_statement] = STATE(464), - [sym_for_statement] = STATE(464), - [sym_return_statement] = STATE(464), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym__declaration_specifiers] = STATE(463), - [sym_parenthesized_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(464), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(464), - [aux_sym_translation_unit_repeat1] = STATE(464), - [sym_break_statement] = STATE(464), - [sym_preproc_include] = STATE(464), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(464), - [sym_preproc_ifdef] = STATE(464), - [sym_linkage_specification] = STATE(464), - [sym_continue_statement] = STATE(464), - [sym_compound_statement] = STATE(464), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(464), - [sym_expression_statement] = STATE(464), - [sym_while_statement] = STATE(464), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1081), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(1083), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(1085), - [aux_sym_preproc_if_token2] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1089), - [aux_sym_preproc_if_token1] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_typedef] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(1105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1109), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_continue_statement] = STATE(456), + [sym_preproc_function_def] = STATE(456), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(457), + [sym_declaration] = STATE(456), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(456), + [sym_for_statement] = STATE(456), + [sym_comma_expression] = STATE(455), + [sym_equality_expression] = STATE(457), + [sym_type_definition] = STATE(456), + [sym_sizeof_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(456), + [sym_return_statement] = STATE(456), + [sym_preproc_include] = STATE(456), + [sym_conditional_expression] = STATE(457), + [sym_preproc_ifdef] = STATE(456), + [sym_relational_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(456), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(456), + [sym_while_statement] = STATE(456), + [sym_preproc_def] = STATE(456), + [sym_goto_statement] = STATE(456), + [sym_logical_expression] = STATE(457), + [sym_function_definition] = STATE(456), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(456), + [sym_expression_statement] = STATE(456), + [sym_do_statement] = STATE(456), + [sym__expression] = STATE(457), + [sym_preproc_call] = STATE(456), + [sym_bitwise_expression] = STATE(457), + [sym__declaration_specifiers] = STATE(458), + [sym_compound_literal_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym__empty_declaration] = STATE(456), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(456), + [sym_preproc_if] = STATE(456), + [sym_assignment_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_linkage_specification] = STATE(456), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [208] = { - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1125), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_null] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [ts_builtin_sym_end] = ACTIONS(1125), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1158), + [sym_preproc_arg] = ACTIONS(1160), }, [209] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1129), - [sym_preproc_arg] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(1162), }, [210] = { - [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_null] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [ts_builtin_sym_end] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1164), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym__Atomic] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [sym_true] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [sym_number_literal] = ACTIONS(1164), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), }, [211] = { - [sym_union_specifier] = STATE(469), - [sym_macro_type_specifier] = STATE(469), - [sym_struct_specifier] = STATE(469), - [sym__type_specifier] = STATE(469), - [sym_sized_type_specifier] = STATE(469), - [sym_enum_specifier] = STATE(469), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(468), - [sym_type_qualifier] = STATE(468), - [anon_sym_short] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), + [sym_struct_specifier] = STATE(463), + [sym_macro_type_specifier] = STATE(463), + [sym_type_qualifier] = STATE(462), + [aux_sym_type_definition_repeat1] = STATE(462), + [sym_union_specifier] = STATE(463), + [sym__type_specifier] = STATE(463), + [sym_sized_type_specifier] = STATE(463), + [sym_enum_specifier] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [212] = { - [sym_parenthesized_expression] = STATE(470), - [anon_sym_LPAREN2] = ACTIONS(177), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1170), }, [213] = { - [sym_parenthesized_expression] = STATE(471), - [anon_sym_LPAREN2] = ACTIONS(177), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1172), }, [214] = { - [sym_parenthesized_expression] = STATE(472), - [anon_sym_LPAREN2] = ACTIONS(179), + [sym_identifier] = ACTIONS(1174), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(474), - [sym_logical_expression] = STATE(474), - [sym_bitwise_expression] = STATE(474), - [sym_cast_expression] = STATE(474), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(474), - [sym_char_literal] = STATE(474), - [sym_assignment_expression] = STATE(474), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(474), - [sym_math_expression] = STATE(474), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(474), - [sym_equality_expression] = STATE(474), - [sym_relational_expression] = STATE(474), - [sym_sizeof_expression] = STATE(474), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(474), - [sym_concatenated_string] = STATE(474), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(1141), - [sym_false] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(207), + [sym_string_literal] = STATE(467), + [sym_system_lib_string] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), }, [216] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1143), + [sym_string_literal] = STATE(469), + [anon_sym_union] = ACTIONS(201), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [anon_sym_static] = ACTIONS(201), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(201), + [anon_sym_signed] = ACTIONS(201), + [anon_sym_enum] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_const] = ACTIONS(201), + [anon_sym__Atomic] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(201), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(79), }, [217] = { + [sym_parenthesized_expression] = STATE(470), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(205), }, [218] = { - [sym_string_literal] = STATE(478), - [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_parenthesized_expression] = STATE(471), [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(1149), + [anon_sym_LPAREN2] = ACTIONS(209), }, [219] = { - [sym_string_literal] = STATE(479), - [anon_sym_long] = ACTIONS(153), - [anon_sym__Atomic] = ACTIONS(153), - [sym_primitive_type] = ACTIONS(153), - [anon_sym_auto] = ACTIONS(153), - [anon_sym_volatile] = ACTIONS(153), - [anon_sym_inline] = ACTIONS(153), - [anon_sym_extern] = ACTIONS(153), - [sym_identifier] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_union] = ACTIONS(153), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [anon_sym_static] = ACTIONS(153), - [anon_sym_restrict] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_register] = ACTIONS(153), - [anon_sym_const] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [220] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1151), + [sym_concatenated_string] = STATE(474), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(474), + [sym_math_expression] = STATE(474), + [sym_cast_expression] = STATE(474), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(474), + [sym_assignment_expression] = STATE(474), + [sym_relational_expression] = STATE(474), + [sym_shift_expression] = STATE(474), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(474), + [sym_bitwise_expression] = STATE(474), + [sym_equality_expression] = STATE(474), + [sym_sizeof_expression] = STATE(474), + [sym_compound_literal_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_char_literal] = STATE(474), + [sym_null] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1182), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(1186), + [sym_true] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [221] = { - [sym_do_statement] = STATE(481), - [sym_goto_statement] = STATE(481), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(481), - [sym_switch_statement] = STATE(481), - [sym_for_statement] = STATE(481), - [sym_return_statement] = STATE(481), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(481), - [sym_continue_statement] = STATE(481), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(481), - [sym_labeled_statement] = STATE(481), - [sym_expression_statement] = STATE(481), - [sym_while_statement] = STATE(481), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_parenthesized_expression] = STATE(475), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [222] = { [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1188), }, [223] = { - [anon_sym_DASH_DASH] = ACTIONS(253), - [sym_identifier] = ACTIONS(255), - [anon_sym__Atomic] = ACTIONS(255), - [aux_sym_preproc_if_token2] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(253), - [sym_number_literal] = ACTIONS(253), - [anon_sym_restrict] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_while] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(253), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_elif_token1] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN2] = ACTIONS(253), - [anon_sym_long] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_static] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_struct] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(253), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_register] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), + [sym_null] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(261), + [aux_sym_preproc_if_token2] = ACTIONS(261), + [anon_sym_const] = ACTIONS(261), + [anon_sym_typedef] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym__Atomic] = ACTIONS(261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(261), + [sym_number_literal] = ACTIONS(263), + [anon_sym_restrict] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_struct] = ACTIONS(261), + [anon_sym_signed] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(261), + [aux_sym_preproc_elif_token1] = ACTIONS(261), + [anon_sym_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym___attribute__] = ACTIONS(261), + [anon_sym_sizeof] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_union] = ACTIONS(261), + [anon_sym_unsigned] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [aux_sym_preproc_else_token1] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(263), + [sym_preproc_directive] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [aux_sym_preproc_if_token1] = ACTIONS(261), + [anon_sym_LPAREN2] = ACTIONS(263), + [anon_sym_else] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [sym_primitive_type] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [aux_sym_preproc_include_token1] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(263), + [anon_sym_static] = ACTIONS(261), + [anon_sym_register] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_if] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(261), + [sym_false] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [sym_identifier] = ACTIONS(261), + [anon_sym_return] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(263), + [aux_sym_preproc_def_token1] = ACTIONS(261), + [anon_sym_auto] = ACTIONS(261), + [anon_sym_inline] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), }, [224] = { [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(1155), + [sym_preproc_arg] = ACTIONS(1190), }, [225] = { + [sym_identifier] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1157), }, [226] = { - [sym_do_statement] = STATE(486), - [sym_preproc_def] = STATE(486), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(486), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(486), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(486), - [sym_goto_statement] = STATE(486), - [sym__empty_declaration] = STATE(486), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(486), - [sym_switch_statement] = STATE(486), - [sym_for_statement] = STATE(486), - [sym_return_statement] = STATE(486), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(486), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(486), - [aux_sym_translation_unit_repeat1] = STATE(486), - [sym_break_statement] = STATE(486), - [sym_preproc_include] = STATE(486), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(486), - [sym_preproc_ifdef] = STATE(486), - [sym_linkage_specification] = STATE(486), - [sym_continue_statement] = STATE(486), - [sym_compound_statement] = STATE(486), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(486), - [sym_expression_statement] = STATE(486), - [sym_while_statement] = STATE(486), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), + [aux_sym_preproc_if_token2] = ACTIONS(1194), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), }, [227] = { - [aux_sym_preproc_if_token2] = ACTIONS(1161), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1196), }, [228] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(488), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(481), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(481), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(488), + [sym_preproc_call] = STATE(482), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [229] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(302), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(326), }, [230] = { + [sym_function_declarator] = STATE(484), + [sym__declarator] = STATE(484), + [sym_init_declarator] = STATE(485), + [sym_pointer_declarator] = STATE(484), + [sym_array_declarator] = STATE(484), + [sym_identifier] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1202), }, [231] = { - [sym__declarator] = STATE(492), - [sym_function_declarator] = STATE(492), - [sym_array_declarator] = STATE(492), - [sym_pointer_declarator] = STATE(492), - [sym_init_declarator] = STATE(493), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_SEMI] = ACTIONS(1169), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, [232] = { - [sym_pointer_type_declarator] = STATE(494), - [sym_array_type_declarator] = STATE(494), - [sym_function_type_declarator] = STATE(494), - [sym__type_declarator] = STATE(494), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, [233] = { - [sym_pointer_type_declarator] = STATE(496), - [sym_array_type_declarator] = STATE(496), - [sym_function_type_declarator] = STATE(496), - [sym__type_declarator] = STATE(496), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(1171), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, [234] = { - [sym_type_qualifier] = STATE(497), - [sym_pointer_type_declarator] = STATE(498), - [sym_array_type_declarator] = STATE(498), - [sym_function_type_declarator] = STATE(498), - [aux_sym_type_definition_repeat1] = STATE(497), - [sym__type_declarator] = STATE(498), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(486), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [235] = { - [anon_sym_LPAREN2] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), + [sym_concatenated_string] = STATE(488), + [sym_pointer_expression] = STATE(488), + [sym_logical_expression] = STATE(488), + [sym_math_expression] = STATE(488), + [sym_cast_expression] = STATE(488), + [sym_field_expression] = STATE(488), + [sym_conditional_expression] = STATE(488), + [sym_assignment_expression] = STATE(488), + [sym_relational_expression] = STATE(488), + [sym_shift_expression] = STATE(488), + [sym_subscript_expression] = STATE(488), + [sym_call_expression] = STATE(488), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(488), + [sym_bitwise_expression] = STATE(488), + [sym_equality_expression] = STATE(488), + [sym_sizeof_expression] = STATE(488), + [sym_compound_literal_expression] = STATE(488), + [sym_parenthesized_expression] = STATE(488), + [sym_char_literal] = STATE(488), + [sym_null] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, [236] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(503), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1181), + [aux_sym_concatenated_string_repeat1] = STATE(489), + [sym_string_literal] = STATE(489), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [237] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(237), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_short] = ACTIONS(1183), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1183), - [sym_identifier] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1210), }, [238] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1186), + [sym_concatenated_string] = STATE(502), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(502), + [sym_math_expression] = STATE(502), + [sym_cast_expression] = STATE(502), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(502), + [sym_assignment_expression] = STATE(502), + [sym_relational_expression] = STATE(502), + [sym_shift_expression] = STATE(502), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(502), + [sym_bitwise_expression] = STATE(502), + [sym_equality_expression] = STATE(502), + [sym_sizeof_expression] = STATE(502), + [sym_compound_literal_expression] = STATE(502), + [sym_parenthesized_expression] = STATE(502), + [sym_char_literal] = STATE(502), + [sym_null] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1212), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [239] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(506), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(503), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [240] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [241] = { - [sym_string_literal] = STATE(507), - [aux_sym_concatenated_string_repeat1] = STATE(507), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [aux_sym_sized_type_specifier_repeat1] = STATE(241), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_short] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [sym_identifier] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym__Atomic] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(704), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), }, [242] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(508), + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [243] = { + [sym_concatenated_string] = STATE(504), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(504), + [sym_math_expression] = STATE(504), + [sym_cast_expression] = STATE(504), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(504), + [sym_assignment_expression] = STATE(504), + [sym_relational_expression] = STATE(504), + [sym_shift_expression] = STATE(504), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(504), + [sym_bitwise_expression] = STATE(504), + [sym_equality_expression] = STATE(504), + [sym_sizeof_expression] = STATE(504), + [sym_compound_literal_expression] = STATE(504), + [sym_parenthesized_expression] = STATE(504), + [sym_char_literal] = STATE(504), + [sym_null] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1219), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [244] = { + [sym_concatenated_string] = STATE(505), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(505), + [sym_math_expression] = STATE(505), + [sym_cast_expression] = STATE(505), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(505), + [sym_assignment_expression] = STATE(505), + [sym_relational_expression] = STATE(505), + [sym_shift_expression] = STATE(505), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(505), + [sym_bitwise_expression] = STATE(505), + [sym_equality_expression] = STATE(505), + [sym_sizeof_expression] = STATE(505), + [sym_compound_literal_expression] = STATE(505), + [sym_parenthesized_expression] = STATE(505), + [sym_char_literal] = STATE(505), + [sym_null] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1223), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [245] = { + [sym_concatenated_string] = STATE(506), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(506), + [sym_math_expression] = STATE(506), + [sym_cast_expression] = STATE(506), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(506), + [sym_assignment_expression] = STATE(506), + [sym_relational_expression] = STATE(506), + [sym_shift_expression] = STATE(506), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(506), + [sym_bitwise_expression] = STATE(506), + [sym_equality_expression] = STATE(506), + [sym_sizeof_expression] = STATE(506), + [sym_compound_literal_expression] = STATE(506), + [sym_parenthesized_expression] = STATE(506), + [sym_char_literal] = STATE(506), + [sym_null] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1227), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [246] = { + [sym_concatenated_string] = STATE(507), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(507), + [sym_math_expression] = STATE(507), + [sym_cast_expression] = STATE(507), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(507), + [sym_assignment_expression] = STATE(507), + [sym_relational_expression] = STATE(507), + [sym_shift_expression] = STATE(507), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(507), + [sym_comma_expression] = STATE(351), + [sym_bitwise_expression] = STATE(507), + [sym_equality_expression] = STATE(507), + [sym_sizeof_expression] = STATE(507), + [sym_compound_literal_expression] = STATE(507), + [sym_parenthesized_expression] = STATE(507), + [sym_char_literal] = STATE(507), + [sym_null] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1231), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [247] = { + [sym_concatenated_string] = STATE(508), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(508), - [sym_bitwise_expression] = STATE(508), + [sym_math_expression] = STATE(508), [sym_cast_expression] = STATE(508), - [sym_field_expression] = STATE(508), - [sym_compound_literal_expression] = STATE(508), - [sym_char_literal] = STATE(508), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(508), [sym_assignment_expression] = STATE(508), - [sym_pointer_expression] = STATE(508), + [sym_relational_expression] = STATE(508), [sym_shift_expression] = STATE(508), - [sym_math_expression] = STATE(508), - [sym_call_expression] = STATE(508), - [sym_conditional_expression] = STATE(508), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(508), + [sym_bitwise_expression] = STATE(508), [sym_equality_expression] = STATE(508), - [sym_relational_expression] = STATE(508), [sym_sizeof_expression] = STATE(508), - [sym_subscript_expression] = STATE(508), + [sym_compound_literal_expression] = STATE(508), [sym_parenthesized_expression] = STATE(508), - [sym_concatenated_string] = STATE(508), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1194), - [sym_true] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(508), + [sym_null] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1235), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [243] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(509), + [248] = { + [sym_concatenated_string] = STATE(509), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(509), - [sym_bitwise_expression] = STATE(509), - [sym_cast_expression] = STATE(509), - [sym_field_expression] = STATE(509), - [sym_compound_literal_expression] = STATE(509), - [sym_char_literal] = STATE(509), - [sym_assignment_expression] = STATE(509), - [sym_pointer_expression] = STATE(509), - [sym_shift_expression] = STATE(509), [sym_math_expression] = STATE(509), - [sym_call_expression] = STATE(509), + [sym_cast_expression] = STATE(509), + [sym_field_expression] = STATE(83), [sym_conditional_expression] = STATE(509), - [sym_equality_expression] = STATE(509), + [sym_assignment_expression] = STATE(509), [sym_relational_expression] = STATE(509), + [sym_shift_expression] = STATE(509), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(509), + [sym_bitwise_expression] = STATE(509), + [sym_equality_expression] = STATE(509), [sym_sizeof_expression] = STATE(509), - [sym_subscript_expression] = STATE(509), + [sym_compound_literal_expression] = STATE(509), [sym_parenthesized_expression] = STATE(509), - [sym_concatenated_string] = STATE(509), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1198), - [sym_true] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(509), + [sym_null] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1239), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [244] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(510), + [249] = { + [sym_concatenated_string] = STATE(510), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(510), - [sym_bitwise_expression] = STATE(510), + [sym_math_expression] = STATE(510), [sym_cast_expression] = STATE(510), - [sym_field_expression] = STATE(510), - [sym_compound_literal_expression] = STATE(510), - [sym_char_literal] = STATE(510), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(510), [sym_assignment_expression] = STATE(510), - [sym_pointer_expression] = STATE(510), + [sym_relational_expression] = STATE(510), [sym_shift_expression] = STATE(510), - [sym_math_expression] = STATE(510), - [sym_call_expression] = STATE(510), - [sym_conditional_expression] = STATE(510), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(510), + [sym_bitwise_expression] = STATE(510), [sym_equality_expression] = STATE(510), - [sym_relational_expression] = STATE(510), [sym_sizeof_expression] = STATE(510), - [sym_subscript_expression] = STATE(510), + [sym_compound_literal_expression] = STATE(510), [sym_parenthesized_expression] = STATE(510), - [sym_concatenated_string] = STATE(510), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1202), - [sym_true] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(510), + [sym_null] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1243), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [245] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(511), + [250] = { + [sym_concatenated_string] = STATE(511), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(511), - [sym_bitwise_expression] = STATE(511), + [sym_math_expression] = STATE(511), [sym_cast_expression] = STATE(511), - [sym_field_expression] = STATE(511), - [sym_compound_literal_expression] = STATE(511), - [sym_char_literal] = STATE(511), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(511), [sym_assignment_expression] = STATE(511), - [sym_pointer_expression] = STATE(511), + [sym_relational_expression] = STATE(511), [sym_shift_expression] = STATE(511), - [sym_math_expression] = STATE(511), - [sym_call_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(511), + [sym_bitwise_expression] = STATE(511), [sym_equality_expression] = STATE(511), - [sym_relational_expression] = STATE(511), [sym_sizeof_expression] = STATE(511), - [sym_subscript_expression] = STATE(511), + [sym_compound_literal_expression] = STATE(511), [sym_parenthesized_expression] = STATE(511), - [sym_concatenated_string] = STATE(511), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1206), - [sym_true] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(511), + [sym_null] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1247), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [246] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(512), + [251] = { + [sym_concatenated_string] = STATE(512), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(512), - [sym_bitwise_expression] = STATE(512), + [sym_math_expression] = STATE(512), [sym_cast_expression] = STATE(512), - [sym_field_expression] = STATE(512), - [sym_compound_literal_expression] = STATE(512), - [sym_char_literal] = STATE(512), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(512), [sym_assignment_expression] = STATE(512), - [sym_pointer_expression] = STATE(512), + [sym_relational_expression] = STATE(512), [sym_shift_expression] = STATE(512), - [sym_math_expression] = STATE(512), - [sym_call_expression] = STATE(512), - [sym_conditional_expression] = STATE(512), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(512), + [sym_bitwise_expression] = STATE(512), [sym_equality_expression] = STATE(512), - [sym_relational_expression] = STATE(512), [sym_sizeof_expression] = STATE(512), - [sym_subscript_expression] = STATE(512), + [sym_compound_literal_expression] = STATE(512), [sym_parenthesized_expression] = STATE(512), - [sym_concatenated_string] = STATE(512), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1210), - [sym_true] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(33), + [sym_char_literal] = STATE(512), + [sym_null] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1251), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [247] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(513), + [252] = { + [sym_concatenated_string] = STATE(513), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(513), - [sym_bitwise_expression] = STATE(513), + [sym_math_expression] = STATE(513), [sym_cast_expression] = STATE(513), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(513), - [sym_char_literal] = STATE(513), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(513), [sym_assignment_expression] = STATE(513), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(513), [sym_shift_expression] = STATE(513), - [sym_math_expression] = STATE(513), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(513), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(513), + [sym_bitwise_expression] = STATE(513), [sym_equality_expression] = STATE(513), - [sym_relational_expression] = STATE(513), [sym_sizeof_expression] = STATE(513), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(513), - [sym_concatenated_string] = STATE(513), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(879), + [sym_char_literal] = STATE(513), + [sym_null] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1255), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [248] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(514), + [253] = { + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + }, + [254] = { + [sym_concatenated_string] = STATE(514), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(514), - [sym_bitwise_expression] = STATE(514), + [sym_math_expression] = STATE(514), [sym_cast_expression] = STATE(514), - [sym_field_expression] = STATE(514), - [sym_compound_literal_expression] = STATE(514), - [sym_char_literal] = STATE(514), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(514), [sym_assignment_expression] = STATE(514), - [sym_pointer_expression] = STATE(514), + [sym_relational_expression] = STATE(514), [sym_shift_expression] = STATE(514), - [sym_math_expression] = STATE(514), - [sym_call_expression] = STATE(514), - [sym_conditional_expression] = STATE(514), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(514), + [sym_bitwise_expression] = STATE(514), [sym_equality_expression] = STATE(514), - [sym_relational_expression] = STATE(514), [sym_sizeof_expression] = STATE(514), - [sym_subscript_expression] = STATE(514), + [sym_compound_literal_expression] = STATE(514), [sym_parenthesized_expression] = STATE(514), - [sym_concatenated_string] = STATE(514), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1218), - [sym_true] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(33), - }, - [249] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(515), - [sym_logical_expression] = STATE(515), - [sym_bitwise_expression] = STATE(515), - [sym_cast_expression] = STATE(515), - [sym_field_expression] = STATE(515), - [sym_compound_literal_expression] = STATE(515), - [sym_char_literal] = STATE(515), - [sym_assignment_expression] = STATE(515), - [sym_pointer_expression] = STATE(515), - [sym_shift_expression] = STATE(515), - [sym_math_expression] = STATE(515), - [sym_call_expression] = STATE(515), - [sym_conditional_expression] = STATE(515), - [sym_equality_expression] = STATE(515), - [sym_relational_expression] = STATE(515), - [sym_sizeof_expression] = STATE(515), - [sym_subscript_expression] = STATE(515), - [sym_parenthesized_expression] = STATE(515), - [sym_concatenated_string] = STATE(515), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1222), - [sym_true] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(33), - }, - [250] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(911), + [sym_char_literal] = STATE(514), + [sym_null] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(33), - }, - [251] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(516), - [sym_logical_expression] = STATE(516), - [sym_bitwise_expression] = STATE(516), - [sym_cast_expression] = STATE(516), - [sym_field_expression] = STATE(516), - [sym_compound_literal_expression] = STATE(516), - [sym_char_literal] = STATE(516), - [sym_assignment_expression] = STATE(516), - [sym_pointer_expression] = STATE(516), - [sym_shift_expression] = STATE(516), - [sym_math_expression] = STATE(516), - [sym_call_expression] = STATE(516), - [sym_conditional_expression] = STATE(516), - [sym_equality_expression] = STATE(516), - [sym_relational_expression] = STATE(516), - [sym_sizeof_expression] = STATE(516), - [sym_subscript_expression] = STATE(516), - [sym_parenthesized_expression] = STATE(516), - [sym_concatenated_string] = STATE(516), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1226), - [sym_true] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(33), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1263), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [252] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(517), + [255] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(517), - [sym_bitwise_expression] = STATE(517), + [sym_math_expression] = STATE(517), [sym_cast_expression] = STATE(517), - [sym_field_expression] = STATE(517), - [sym_compound_literal_expression] = STATE(517), - [sym_char_literal] = STATE(517), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(517), [sym_assignment_expression] = STATE(517), - [sym_pointer_expression] = STATE(517), + [sym_relational_expression] = STATE(517), [sym_shift_expression] = STATE(517), - [sym_math_expression] = STATE(517), - [sym_call_expression] = STATE(517), - [sym_conditional_expression] = STATE(517), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), [sym_equality_expression] = STATE(517), - [sym_relational_expression] = STATE(517), [sym_sizeof_expression] = STATE(517), - [sym_subscript_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), [sym_parenthesized_expression] = STATE(517), - [sym_concatenated_string] = STATE(517), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1230), - [sym_true] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(33), - }, - [253] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), - }, - [254] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1234), - }, - [255] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [256] = { - [anon_sym_LPAREN2] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), }, [257] = { - [sym_parenthesized_expression] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_abstract_pointer_declarator] = STATE(518), + [sym_abstract_array_declarator] = STATE(518), + [sym_abstract_function_declarator] = STATE(518), + [sym__abstract_declarator] = STATE(518), + [sym_type_qualifier] = STATE(519), + [aux_sym_type_definition_repeat1] = STATE(519), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [258] = { - [sym_parenthesized_expression] = STATE(522), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_abstract_pointer_declarator] = STATE(520), + [sym_abstract_array_declarator] = STATE(520), + [sym_abstract_function_declarator] = STATE(520), + [sym__abstract_declarator] = STATE(520), + [sym_type_qualifier] = STATE(521), + [aux_sym_type_definition_repeat1] = STATE(521), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [259] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [ts_builtin_sym_end] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), + [sym_macro_type_specifier] = STATE(524), + [sym_type_qualifier] = STATE(527), + [sym__type_specifier] = STATE(524), + [sym_union_specifier] = STATE(524), + [sym_parameter_list] = STATE(261), + [sym_parameter_declaration] = STATE(522), + [sym_abstract_function_declarator] = STATE(526), + [sym_storage_class_specifier] = STATE(527), + [aux_sym_sized_type_specifier_repeat1] = STATE(525), + [sym_struct_specifier] = STATE(524), + [sym_attribute_specifier] = STATE(527), + [sym__abstract_declarator] = STATE(526), + [sym_abstract_array_declarator] = STATE(526), + [aux_sym__declaration_specifiers_repeat1] = STATE(527), + [sym_sized_type_specifier] = STATE(524), + [sym_enum_specifier] = STATE(524), + [sym__declaration_specifiers] = STATE(528), + [sym_abstract_pointer_declarator] = STATE(526), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(532), }, [260] = { - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1248), - [sym_true] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), + [sym_concatenated_string] = STATE(532), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(532), + [sym_math_expression] = STATE(532), + [sym_cast_expression] = STATE(532), + [sym_type_qualifier] = STATE(531), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(531), + [sym_conditional_expression] = STATE(532), + [sym_assignment_expression] = STATE(532), + [sym_relational_expression] = STATE(532), + [sym_shift_expression] = STATE(532), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(532), + [sym_bitwise_expression] = STATE(532), + [sym_equality_expression] = STATE(532), + [sym_sizeof_expression] = STATE(532), + [sym_compound_literal_expression] = STATE(532), + [sym_parenthesized_expression] = STATE(532), + [sym_char_literal] = STATE(532), + [sym_null] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [261] = { - [sym_do_statement] = STATE(531), - [sym_goto_statement] = STATE(531), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(531), - [sym_switch_statement] = STATE(531), - [sym_for_statement] = STATE(531), - [sym_return_statement] = STATE(531), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(531), - [sym_case_statement] = STATE(531), - [sym_break_statement] = STATE(531), - [sym_continue_statement] = STATE(531), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(531), - [sym_labeled_statement] = STATE(531), - [sym_expression_statement] = STATE(531), - [sym_while_statement] = STATE(531), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), }, [262] = { - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1266), - [sym_true] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [sym_null] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1300), }, [263] = { - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_COLON] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), + [sym_abstract_pointer_declarator] = STATE(518), + [sym_abstract_array_declarator] = STATE(518), + [sym_abstract_function_declarator] = STATE(518), + [sym__abstract_declarator] = STATE(518), + [sym_type_qualifier] = STATE(535), + [aux_sym_type_definition_repeat1] = STATE(535), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [264] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1272), + [aux_sym_concatenated_string_repeat1] = STATE(536), + [sym_string_literal] = STATE(536), + [anon_sym_PERCENT] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [265] = { + [sym_array_type_declarator] = STATE(537), + [sym_pointer_type_declarator] = STATE(537), + [sym_function_type_declarator] = STATE(537), + [sym__type_declarator] = STATE(537), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1274), }, [266] = { - [aux_sym_enumerator_list_repeat1] = STATE(535), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_COMMA] = ACTIONS(1302), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1302), }, [267] = { - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_COLON] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), + [sym_array_type_declarator] = STATE(539), + [sym_type_qualifier] = STATE(538), + [sym_pointer_type_declarator] = STATE(539), + [aux_sym_type_definition_repeat1] = STATE(538), + [sym_function_type_declarator] = STATE(539), + [sym__type_declarator] = STATE(539), + [sym_identifier] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(541), }, [268] = { + [sym_array_type_declarator] = STATE(541), + [sym_pointer_type_declarator] = STATE(541), + [sym_function_type_declarator] = STATE(541), + [sym__type_declarator] = STATE(541), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1284), }, [269] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(537), - [sym_logical_expression] = STATE(537), - [sym_bitwise_expression] = STATE(537), - [sym_cast_expression] = STATE(537), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(537), - [sym_char_literal] = STATE(537), - [sym_assignment_expression] = STATE(537), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(537), - [sym_math_expression] = STATE(537), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(537), - [sym_equality_expression] = STATE(537), - [sym_relational_expression] = STATE(537), - [sym_sizeof_expression] = STATE(537), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(537), - [sym_concatenated_string] = STATE(537), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_type_definition_repeat2] = STATE(545), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1312), }, [270] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(538), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [aux_sym_sized_type_specifier_repeat1] = STATE(270), + [anon_sym_long] = ACTIONS(1314), + [sym_identifier] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(704), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_signed] = ACTIONS(1314), }, [271] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(637), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_AMP_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_LT_LT_EQ] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(637), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_GT_GT_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [272] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(548), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(548), + [sym_math_expression] = STATE(548), + [sym_cast_expression] = STATE(548), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(548), + [sym_assignment_expression] = STATE(548), + [sym_relational_expression] = STATE(548), + [sym_shift_expression] = STATE(548), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(548), + [sym_bitwise_expression] = STATE(548), + [sym_equality_expression] = STATE(548), + [sym_sizeof_expression] = STATE(548), + [sym_compound_literal_expression] = STATE(548), + [sym_parenthesized_expression] = STATE(548), + [sym_char_literal] = STATE(548), + [sym_null] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1317), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(1321), + [sym_true] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [273] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(539), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [aux_sym_sized_type_specifier_repeat1] = STATE(549), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(1323), + [sym_identifier] = ACTIONS(279), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym__Atomic] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_auto] = ACTIONS(275), + [anon_sym_inline] = ACTIONS(275), + [anon_sym___attribute__] = ACTIONS(275), }, [274] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(541), - [sym_logical_expression] = STATE(541), - [sym_bitwise_expression] = STATE(541), - [sym_cast_expression] = STATE(541), - [sym_field_expression] = STATE(541), - [sym_compound_literal_expression] = STATE(541), - [sym_char_literal] = STATE(541), - [sym_assignment_expression] = STATE(541), - [sym_pointer_expression] = STATE(541), - [sym_shift_expression] = STATE(541), - [sym_math_expression] = STATE(541), - [sym_call_expression] = STATE(541), - [sym_conditional_expression] = STATE(541), - [sym_equality_expression] = STATE(541), - [sym_relational_expression] = STATE(541), - [sym_sizeof_expression] = STATE(541), - [sym_subscript_expression] = STATE(541), - [sym_parenthesized_expression] = STATE(541), - [sym_concatenated_string] = STATE(541), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [sym_true] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(1294), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [275] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(187), + [sym_function_declarator] = STATE(552), + [sym__declarator] = STATE(552), + [sym_init_declarator] = STATE(159), + [sym_pointer_declarator] = STATE(552), + [sym_array_declarator] = STATE(552), + [sym_identifier] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(332), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(207), }, [276] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym__declaration_specifiers_repeat1] = STATE(553), + [sym_attribute_specifier] = STATE(553), + [sym_type_qualifier] = STATE(553), + [sym_storage_class_specifier] = STATE(553), + [sym_identifier] = ACTIONS(338), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [277] = { - [sym_string_literal] = STATE(542), - [aux_sym_concatenated_string_repeat1] = STATE(542), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_struct_specifier] = STATE(554), + [sym_macro_type_specifier] = STATE(554), + [sym_attribute_specifier] = STATE(137), + [sym_type_qualifier] = STATE(137), + [sym_union_specifier] = STATE(554), + [sym__type_specifier] = STATE(554), + [sym_sized_type_specifier] = STATE(554), + [sym_enum_specifier] = STATE(554), + [aux_sym__declaration_specifiers_repeat1] = STATE(137), + [sym_storage_class_specifier] = STATE(137), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(553), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [278] = { - [sym_string_literal] = STATE(554), - [aux_sym_concatenated_string_repeat1] = STATE(554), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_null] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [sym_true] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), }, [279] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(555), - [sym_logical_expression] = STATE(555), - [sym_bitwise_expression] = STATE(555), - [sym_cast_expression] = STATE(555), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(555), - [sym_char_literal] = STATE(555), - [sym_assignment_expression] = STATE(555), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(555), - [sym_math_expression] = STATE(555), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(555), - [sym_equality_expression] = STATE(555), - [sym_relational_expression] = STATE(555), - [sym_sizeof_expression] = STATE(555), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(555), - [sym_concatenated_string] = STATE(555), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_preproc_if_token2] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), }, [280] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(556), - [sym_logical_expression] = STATE(556), - [sym_bitwise_expression] = STATE(556), - [sym_cast_expression] = STATE(556), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(556), - [sym_char_literal] = STATE(556), - [sym_assignment_expression] = STATE(556), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(556), - [sym_math_expression] = STATE(556), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(556), - [sym_equality_expression] = STATE(556), - [sym_relational_expression] = STATE(556), - [sym_sizeof_expression] = STATE(556), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(556), - [sym_concatenated_string] = STATE(556), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(207), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(556), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(556), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(482), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [281] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(557), - [sym_logical_expression] = STATE(557), - [sym_bitwise_expression] = STATE(557), - [sym_cast_expression] = STATE(557), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(557), - [sym_char_literal] = STATE(557), - [sym_assignment_expression] = STATE(557), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(557), - [sym_math_expression] = STATE(557), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(557), - [sym_equality_expression] = STATE(557), - [sym_relational_expression] = STATE(557), - [sym_sizeof_expression] = STATE(557), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(557), - [sym_concatenated_string] = STATE(557), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_union] = ACTIONS(376), + [anon_sym_sizeof] = ACTIONS(376), + [anon_sym_unsigned] = ACTIONS(376), + [anon_sym_volatile] = ACTIONS(376), + [anon_sym_short] = ACTIONS(376), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_null] = ACTIONS(376), + [sym_identifier] = ACTIONS(376), + [anon_sym_do] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(376), + [ts_builtin_sym_end] = ACTIONS(378), + [anon_sym_TILDE] = ACTIONS(378), + [sym_preproc_directive] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(378), + [aux_sym_preproc_if_token1] = ACTIONS(376), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(376), + [anon_sym_LPAREN2] = ACTIONS(378), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(378), + [anon_sym__Atomic] = ACTIONS(376), + [sym_primitive_type] = ACTIONS(376), + [sym_true] = ACTIONS(376), + [anon_sym_for] = ACTIONS(376), + [anon_sym_break] = ACTIONS(376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_include_token1] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_static] = ACTIONS(376), + [anon_sym_restrict] = ACTIONS(376), + [anon_sym_register] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(378), + [anon_sym_if] = ACTIONS(376), + [anon_sym_struct] = ACTIONS(376), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_signed] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [anon_sym_long] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_return] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(378), + [sym_number_literal] = ACTIONS(378), + [aux_sym_preproc_def_token1] = ACTIONS(376), + [sym_false] = ACTIONS(376), + [anon_sym_auto] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_inline] = ACTIONS(376), + [anon_sym___attribute__] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), }, [282] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(558), - [sym_logical_expression] = STATE(558), - [sym_bitwise_expression] = STATE(558), - [sym_cast_expression] = STATE(558), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(558), - [sym_char_literal] = STATE(558), - [sym_assignment_expression] = STATE(558), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(558), - [sym_math_expression] = STATE(558), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_sizeof_expression] = STATE(558), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(558), - [sym_concatenated_string] = STATE(558), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_string_literal_repeat1] = STATE(180), + [aux_sym_string_literal_token1] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(380), }, [283] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(559), - [sym_logical_expression] = STATE(559), - [sym_bitwise_expression] = STATE(559), - [sym_cast_expression] = STATE(559), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(559), - [sym_char_literal] = STATE(559), - [sym_assignment_expression] = STATE(559), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(559), - [sym_math_expression] = STATE(559), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(559), - [sym_equality_expression] = STATE(559), - [sym_relational_expression] = STATE(559), - [sym_sizeof_expression] = STATE(559), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(559), - [sym_concatenated_string] = STATE(559), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(207), + [sym_continue_statement] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(559), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(559), + [sym_for_statement] = STATE(559), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(559), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(559), + [sym_return_statement] = STATE(559), + [sym_preproc_include] = STATE(559), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(559), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_preproc_def] = STATE(559), + [sym_goto_statement] = STATE(559), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(559), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(559), + [sym_expression_statement] = STATE(559), + [sym_do_statement] = STATE(559), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(559), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(559), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(559), + [sym_preproc_if] = STATE(559), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(559), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [284] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(560), - [sym_logical_expression] = STATE(560), - [sym_bitwise_expression] = STATE(560), - [sym_cast_expression] = STATE(560), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(560), - [sym_char_literal] = STATE(560), - [sym_assignment_expression] = STATE(560), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(560), - [sym_math_expression] = STATE(560), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(560), - [sym_equality_expression] = STATE(560), - [sym_relational_expression] = STATE(560), - [sym_sizeof_expression] = STATE(560), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(560), - [sym_concatenated_string] = STATE(560), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_null] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [sym_true] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), }, [285] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(561), - [sym_logical_expression] = STATE(561), - [sym_bitwise_expression] = STATE(561), - [sym_cast_expression] = STATE(561), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(561), - [sym_char_literal] = STATE(561), - [sym_assignment_expression] = STATE(561), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(561), - [sym_math_expression] = STATE(561), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(561), - [sym_equality_expression] = STATE(561), - [sym_relational_expression] = STATE(561), - [sym_sizeof_expression] = STATE(561), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(561), - [sym_concatenated_string] = STATE(561), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(207), + [sym_function_declarator] = STATE(158), + [sym__declarator] = STATE(158), + [sym_init_declarator] = STATE(159), + [sym_pointer_declarator] = STATE(158), + [sym_array_declarator] = STATE(158), + [sym_identifier] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), + [sym_comment] = ACTIONS(3), }, [286] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(562), - [sym_logical_expression] = STATE(562), - [sym_bitwise_expression] = STATE(562), - [sym_cast_expression] = STATE(562), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(562), - [sym_char_literal] = STATE(562), - [sym_assignment_expression] = STATE(562), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(562), - [sym_math_expression] = STATE(562), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(562), - [sym_equality_expression] = STATE(562), - [sym_relational_expression] = STATE(562), - [sym_sizeof_expression] = STATE(562), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(562), - [sym_concatenated_string] = STATE(562), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(207), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [287] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(911), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(1349), }, [288] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(563), - [sym_logical_expression] = STATE(563), - [sym_bitwise_expression] = STATE(563), - [sym_cast_expression] = STATE(563), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(563), - [sym_char_literal] = STATE(563), - [sym_assignment_expression] = STATE(563), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(563), - [sym_math_expression] = STATE(563), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(563), - [sym_equality_expression] = STATE(563), - [sym_relational_expression] = STATE(563), - [sym_sizeof_expression] = STATE(563), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(563), - [sym_concatenated_string] = STATE(563), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(207), + [sym_parenthesized_expression] = STATE(561), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [289] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(564), - [sym_logical_expression] = STATE(564), - [sym_bitwise_expression] = STATE(564), - [sym_cast_expression] = STATE(564), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(564), - [sym_char_literal] = STATE(564), - [sym_assignment_expression] = STATE(564), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(564), - [sym_math_expression] = STATE(564), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(564), - [sym_equality_expression] = STATE(564), - [sym_relational_expression] = STATE(564), - [sym_sizeof_expression] = STATE(564), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(564), - [sym_concatenated_string] = STATE(564), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [290] = { - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1338), - [sym_true] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), + [sym_parenthesized_expression] = STATE(563), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [291] = { - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [sym_true] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_null] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [ts_builtin_sym_end] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1353), }, [292] = { - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [293] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(566), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), - [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(566), - [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_volatile] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_COMMA] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1363), }, [294] = { - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_long] = ACTIONS(653), - [anon_sym__Atomic] = ACTIONS(653), - [sym_primitive_type] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_identifier] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [sym_preproc_directive] = ACTIONS(653), - [aux_sym_preproc_if_token1] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_restrict] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typedef] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_if] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_signed] = ACTIONS(653), - [anon_sym_enum] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [sym_number_literal] = ACTIONS(651), - [anon_sym_return] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(651), - [aux_sym_preproc_include_token1] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_volatile] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(653), - [anon_sym_union] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(651), - [anon_sym_unsigned] = ACTIONS(653), - [anon_sym_struct] = ACTIONS(653), - [anon_sym_short] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(651), - [sym_null] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_goto] = ACTIONS(653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [ts_builtin_sym_end] = ACTIONS(651), - [aux_sym_preproc_def_token1] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), - [anon_sym_register] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), + [sym_while_statement] = STATE(573), + [sym_continue_statement] = STATE(573), + [sym_goto_statement] = STATE(573), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(573), + [sym_expression_statement] = STATE(573), + [sym_if_statement] = STATE(573), + [sym_do_statement] = STATE(573), + [sym_for_statement] = STATE(573), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(573), + [sym_return_statement] = STATE(573), + [sym_break_statement] = STATE(573), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(573), + [sym_labeled_statement] = STATE(573), + [sym_case_statement] = STATE(573), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [295] = { - [aux_sym_string_literal_repeat1] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(657), - [aux_sym_string_literal_token1] = ACTIONS(657), + [anon_sym_case] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1379), + [sym_true] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), }, [296] = { - [sym_do_statement] = STATE(569), - [sym_preproc_def] = STATE(569), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(569), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(569), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(569), - [sym_goto_statement] = STATE(569), - [sym__empty_declaration] = STATE(569), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(569), - [sym_switch_statement] = STATE(569), - [sym_for_statement] = STATE(569), - [sym_return_statement] = STATE(569), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(569), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(569), - [aux_sym_translation_unit_repeat1] = STATE(569), - [sym_break_statement] = STATE(569), - [sym_preproc_include] = STATE(569), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(569), - [sym_preproc_ifdef] = STATE(569), - [sym_linkage_specification] = STATE(569), - [sym_continue_statement] = STATE(569), - [sym_compound_statement] = STATE(569), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(569), - [sym_expression_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), }, [297] = { - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_null] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [ts_builtin_sym_end] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1389), }, [298] = { - [sym__declarator] = STATE(157), - [sym_function_declarator] = STATE(157), - [sym_array_declarator] = STATE(157), - [sym_pointer_declarator] = STATE(157), - [sym_init_declarator] = STATE(158), - [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(1391), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(332), }, [299] = { + [aux_sym_enumerator_list_repeat1] = STATE(577), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1391), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1356), }, [300] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1395), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_restrict] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1395), + [anon_sym_inline] = ACTIONS(1395), + [anon_sym___attribute__] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1397), }, [301] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1360), - [sym_preproc_arg] = ACTIONS(1362), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1399), }, [302] = { [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1401), }, [303] = { - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [304] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1403), + [sym_null] = ACTIONS(1403), + [anon_sym_volatile] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_typedef] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1403), + [anon_sym__Atomic] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), + [sym_number_literal] = ACTIONS(1405), + [anon_sym_restrict] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_signed] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym___attribute__] = ACTIONS(1403), + [anon_sym_sizeof] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_unsigned] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1405), + [sym_preproc_directive] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1405), + [aux_sym_preproc_if_token1] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1403), + [sym_true] = ACTIONS(1403), + [sym_primitive_type] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [aux_sym_preproc_include_token1] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_register] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [sym_false] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1403), + [ts_builtin_sym_end] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1403), + [anon_sym_auto] = ACTIONS(1403), + [anon_sym_inline] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), }, [305] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(576), - [sym_storage_class_specifier] = STATE(576), - [sym_type_qualifier] = STATE(576), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [sym_identifier] = ACTIONS(273), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [306] = { - [sym_union_specifier] = STATE(577), - [sym_macro_type_specifier] = STATE(577), - [sym__type_specifier] = STATE(577), - [sym_sized_type_specifier] = STATE(577), - [aux_sym__declaration_specifiers_repeat1] = STATE(132), - [sym_enum_specifier] = STATE(577), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_storage_class_specifier] = STATE(132), - [sym_type_qualifier] = STATE(132), - [sym_struct_specifier] = STATE(577), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(623), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [307] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(578), - [anon_sym_LPAREN2] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym_inline] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [308] = { - [sym_function_field_declarator] = STATE(584), - [sym__field_declarator] = STATE(584), - [sym_pointer_field_declarator] = STATE(584), - [sym_array_field_declarator] = STATE(584), - [sym_bitfield_clause] = STATE(585), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - }, - [309] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(587), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(587), - [sym__field_declaration_list_item] = STATE(587), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(587), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym__declaration_specifiers] = STATE(308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(619), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(63), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(619), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), - }, + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(579), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [309] = { + [sym_concatenated_string] = STATE(581), + [sym_pointer_expression] = STATE(581), + [sym_logical_expression] = STATE(581), + [sym_math_expression] = STATE(581), + [sym_cast_expression] = STATE(581), + [sym_field_expression] = STATE(581), + [sym_conditional_expression] = STATE(581), + [sym_assignment_expression] = STATE(581), + [sym_relational_expression] = STATE(581), + [sym_shift_expression] = STATE(581), + [sym_subscript_expression] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(581), + [sym_bitwise_expression] = STATE(581), + [sym_equality_expression] = STATE(581), + [sym_sizeof_expression] = STATE(581), + [sym_compound_literal_expression] = STATE(581), + [sym_parenthesized_expression] = STATE(581), + [sym_char_literal] = STATE(581), + [sym_null] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), + }, [310] = { - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), + [aux_sym_concatenated_string_repeat1] = STATE(582), + [sym_string_literal] = STATE(582), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [311] = { - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1392), - [anon_sym_CARET_EQ] = ACTIONS(1392), - [anon_sym_LT_LT_EQ] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_DASH_EQ] = ACTIONS(1392), - [anon_sym_SLASH_EQ] = ACTIONS(1392), - [anon_sym_GT_GT_EQ] = ACTIONS(1392), - [anon_sym_STAR_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_PIPE_EQ] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1392), - [anon_sym_AMP_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_DASH_GT] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1392), + [sym_concatenated_string] = STATE(594), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(594), + [sym_math_expression] = STATE(594), + [sym_cast_expression] = STATE(594), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(594), + [sym_assignment_expression] = STATE(594), + [sym_relational_expression] = STATE(594), + [sym_shift_expression] = STATE(594), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(594), + [sym_bitwise_expression] = STATE(594), + [sym_equality_expression] = STATE(594), + [sym_sizeof_expression] = STATE(594), + [sym_compound_literal_expression] = STATE(594), + [sym_parenthesized_expression] = STATE(594), + [sym_char_literal] = STATE(594), + [sym_null] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1413), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [312] = { - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_COLON] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1417), }, [313] = { - [anon_sym_DASH_DASH] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_COLON] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_DASH_GT] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1400), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(596), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [314] = { - [aux_sym_string_literal_repeat1] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(372), }, [315] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_concatenated_string_repeat1] = STATE(597), + [sym_string_literal] = STATE(597), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_QMARK] = ACTIONS(710), }, [316] = { - [sym__expression] = STATE(589), - [sym_logical_expression] = STATE(589), - [sym_bitwise_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_declaration] = STATE(588), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(589), - [sym_char_literal] = STATE(589), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(589), - [sym_equality_expression] = STATE(589), - [sym_relational_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(589), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(589), - [sym_math_expression] = STATE(589), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [317] = { - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(1415), + [sym_concatenated_string] = STATE(598), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(598), + [sym_math_expression] = STATE(598), + [sym_cast_expression] = STATE(598), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(598), + [sym_assignment_expression] = STATE(598), + [sym_relational_expression] = STATE(598), + [sym_shift_expression] = STATE(598), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(598), + [sym_bitwise_expression] = STATE(598), + [sym_equality_expression] = STATE(598), + [sym_sizeof_expression] = STATE(598), + [sym_compound_literal_expression] = STATE(598), + [sym_parenthesized_expression] = STATE(598), + [sym_char_literal] = STATE(598), + [sym_null] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1419), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [318] = { - [sym_do_statement] = STATE(595), - [sym_goto_statement] = STATE(595), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(595), - [sym_switch_statement] = STATE(595), - [sym_for_statement] = STATE(595), - [sym_return_statement] = STATE(595), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(595), - [sym_continue_statement] = STATE(595), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(595), - [sym_labeled_statement] = STATE(595), - [sym_expression_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(599), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(599), + [sym_math_expression] = STATE(599), + [sym_cast_expression] = STATE(599), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(599), + [sym_assignment_expression] = STATE(599), + [sym_relational_expression] = STATE(599), + [sym_shift_expression] = STATE(599), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(599), + [sym_bitwise_expression] = STATE(599), + [sym_equality_expression] = STATE(599), + [sym_sizeof_expression] = STATE(599), + [sym_compound_literal_expression] = STATE(599), + [sym_parenthesized_expression] = STATE(599), + [sym_char_literal] = STATE(599), + [sym_null] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1423), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [319] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(600), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(600), + [sym_math_expression] = STATE(600), + [sym_cast_expression] = STATE(600), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(600), + [sym_assignment_expression] = STATE(600), + [sym_relational_expression] = STATE(600), + [sym_shift_expression] = STATE(600), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(600), + [sym_bitwise_expression] = STATE(600), + [sym_equality_expression] = STATE(600), + [sym_sizeof_expression] = STATE(600), + [sym_compound_literal_expression] = STATE(600), + [sym_parenthesized_expression] = STATE(600), + [sym_char_literal] = STATE(600), + [sym_null] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1427), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [320] = { - [sym_parenthesized_expression] = STATE(596), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(601), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(601), + [sym_math_expression] = STATE(601), + [sym_cast_expression] = STATE(601), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(601), + [sym_assignment_expression] = STATE(601), + [sym_relational_expression] = STATE(601), + [sym_shift_expression] = STATE(601), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(601), + [sym_bitwise_expression] = STATE(601), + [sym_equality_expression] = STATE(601), + [sym_sizeof_expression] = STATE(601), + [sym_compound_literal_expression] = STATE(601), + [sym_parenthesized_expression] = STATE(601), + [sym_char_literal] = STATE(601), + [sym_null] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1433), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1431), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [321] = { - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [sym_preproc_directive] = ACTIONS(1427), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), + [sym_concatenated_string] = STATE(602), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(602), + [sym_math_expression] = STATE(602), + [sym_cast_expression] = STATE(602), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(602), + [sym_assignment_expression] = STATE(602), + [sym_relational_expression] = STATE(602), + [sym_shift_expression] = STATE(602), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(602), + [sym_bitwise_expression] = STATE(602), + [sym_equality_expression] = STATE(602), + [sym_sizeof_expression] = STATE(602), + [sym_compound_literal_expression] = STATE(602), + [sym_parenthesized_expression] = STATE(602), + [sym_char_literal] = STATE(602), + [sym_null] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1435), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [322] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1429), + [sym_concatenated_string] = STATE(603), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(603), + [sym_math_expression] = STATE(603), + [sym_cast_expression] = STATE(603), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_relational_expression] = STATE(603), + [sym_shift_expression] = STATE(603), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(603), + [sym_bitwise_expression] = STATE(603), + [sym_equality_expression] = STATE(603), + [sym_sizeof_expression] = STATE(603), + [sym_compound_literal_expression] = STATE(603), + [sym_parenthesized_expression] = STATE(603), + [sym_char_literal] = STATE(603), + [sym_null] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1439), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [323] = { - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [sym_true] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1431), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_null] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [ts_builtin_sym_end] = ACTIONS(1431), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1431), + [sym_concatenated_string] = STATE(604), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(604), + [sym_math_expression] = STATE(604), + [sym_cast_expression] = STATE(604), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(604), + [sym_assignment_expression] = STATE(604), + [sym_relational_expression] = STATE(604), + [sym_shift_expression] = STATE(604), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(604), + [sym_bitwise_expression] = STATE(604), + [sym_equality_expression] = STATE(604), + [sym_sizeof_expression] = STATE(604), + [sym_compound_literal_expression] = STATE(604), + [sym_parenthesized_expression] = STATE(604), + [sym_char_literal] = STATE(604), + [sym_null] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1443), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [324] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1435), + [sym_concatenated_string] = STATE(605), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(605), + [sym_math_expression] = STATE(605), + [sym_cast_expression] = STATE(605), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(605), + [sym_assignment_expression] = STATE(605), + [sym_relational_expression] = STATE(605), + [sym_shift_expression] = STATE(605), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(605), + [sym_bitwise_expression] = STATE(605), + [sym_equality_expression] = STATE(605), + [sym_sizeof_expression] = STATE(605), + [sym_compound_literal_expression] = STATE(605), + [sym_parenthesized_expression] = STATE(605), + [sym_char_literal] = STATE(605), + [sym_null] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1447), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [325] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1439), - [sym_preproc_arg] = ACTIONS(1441), + [sym_concatenated_string] = STATE(606), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(606), + [sym_math_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_relational_expression] = STATE(606), + [sym_shift_expression] = STATE(606), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(606), + [sym_bitwise_expression] = STATE(606), + [sym_equality_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(606), + [sym_char_literal] = STATE(606), + [sym_null] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1453), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1451), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [326] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1455), + [sym_null] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1455), + [anon_sym__Atomic] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), + [sym_number_literal] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_signed] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1455), + [anon_sym_sizeof] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_preproc_directive] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [aux_sym_preproc_if_token1] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1455), + [sym_true] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [aux_sym_preproc_include_token1] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), + [ts_builtin_sym_end] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [aux_sym_preproc_def_token1] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_inline] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), }, [327] = { - [sym__expression] = STATE(604), - [sym_logical_expression] = STATE(604), - [sym_bitwise_expression] = STATE(604), - [sym_cast_expression] = STATE(604), - [sym_declaration] = STATE(603), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(604), - [sym_char_literal] = STATE(604), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(604), - [sym_equality_expression] = STATE(604), - [sym_relational_expression] = STATE(604), - [sym_sizeof_expression] = STATE(604), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(604), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(604), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(604), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(604), - [sym_math_expression] = STATE(604), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(1445), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(607), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(607), + [sym_math_expression] = STATE(607), + [sym_cast_expression] = STATE(607), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(607), + [sym_assignment_expression] = STATE(607), + [sym_relational_expression] = STATE(607), + [sym_shift_expression] = STATE(607), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(607), + [sym_bitwise_expression] = STATE(607), + [sym_equality_expression] = STATE(607), + [sym_sizeof_expression] = STATE(607), + [sym_compound_literal_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_char_literal] = STATE(607), + [sym_null] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(1461), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1459), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [328] = { - [sym_do_statement] = STATE(609), - [sym_goto_statement] = STATE(609), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(609), - [sym_switch_statement] = STATE(609), - [sym_for_statement] = STATE(609), - [sym_return_statement] = STATE(609), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(609), - [sym_continue_statement] = STATE(609), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(609), - [sym_labeled_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_while_statement] = STATE(609), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [anon_sym_volatile] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_typedef] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1463), + [anon_sym__Atomic] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [sym_number_literal] = ACTIONS(1465), + [anon_sym_restrict] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_signed] = ACTIONS(1463), + [anon_sym_long] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym___attribute__] = ACTIONS(1463), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsigned] = ACTIONS(1463), + [anon_sym_short] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1465), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1465), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1463), + [sym_true] = ACTIONS(1463), + [sym_primitive_type] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1463), + [ts_builtin_sym_end] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1465), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [anon_sym_auto] = ACTIONS(1463), + [anon_sym_inline] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), }, [329] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1467), }, [330] = { - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_signed] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1461), - [sym_true] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [sym_null] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_null] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym__Atomic] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [sym_number_literal] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), }, [331] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_LPAREN2] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_long] = ACTIONS(697), - [anon_sym__Atomic] = ACTIONS(700), - [sym_primitive_type] = ACTIONS(703), - [sym_true] = ACTIONS(706), - [sym_identifier] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(715), - [aux_sym_preproc_if_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_static] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(742), - [anon_sym_signed] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_return] = ACTIONS(754), - [sym_number_literal] = ACTIONS(751), - [anon_sym_continue] = ACTIONS(757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(760), - [sym_false] = ACTIONS(706), - [aux_sym_preproc_include_token1] = ACTIONS(763), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(769), - [anon_sym_union] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_unsigned] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_short] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_null] = ACTIONS(706), - [anon_sym_break] = ACTIONS(784), - [anon_sym_do] = ACTIONS(787), - [anon_sym_goto] = ACTIONS(790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(760), - [anon_sym_SEMI] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(733), - [anon_sym_register] = ACTIONS(724), - [anon_sym_const] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), }, [332] = { - [sym_string_literal] = STATE(332), - [aux_sym_concatenated_string_repeat1] = STATE(332), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1477), + [sym_preproc_arg] = ACTIONS(1479), }, [333] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(333), - [sym_storage_class_specifier] = STATE(333), - [sym_type_qualifier] = STATE(333), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(813), - [anon_sym_restrict] = ACTIONS(810), - [sym_identifier] = ACTIONS(808), - [anon_sym__Atomic] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_register] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_DASH_GT] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_COLON] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1483), }, [334] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(333), - [sym_storage_class_specifier] = STATE(333), - [sym_type_qualifier] = STATE(333), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1485), }, [335] = { - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_COLON] = ACTIONS(1488), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_CARET_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_PIPE_PIPE] = ACTIONS(1488), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_DASH_GT] = ACTIONS(1488), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1488), + [aux_sym_concatenated_string_repeat1] = STATE(335), + [sym_string_literal] = STATE(335), + [anon_sym_PERCENT] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [336] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(612), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym__declaration_specifiers_repeat1] = STATE(382), + [sym_attribute_specifier] = STATE(382), + [sym_type_qualifier] = STATE(382), + [sym_storage_class_specifier] = STATE(382), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [337] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(308), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1498), + [anon_sym_RBRACK] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), - }, - [338] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1498), [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_COLON] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), [anon_sym_QMARK] = ACTIONS(1500), [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), [anon_sym_GT_EQ] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, - [339] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), + [338] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1502), }, - [340] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), + [339] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(308), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1506), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1506), + }, + [340] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1510), }, [341] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [342] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [343] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [344] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(83), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [345] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(613), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1524), + [anon_sym_AMP_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_LT_LT_EQ] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_GT_GT_EQ] = ACTIONS(1524), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [346] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(621), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [347] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(616), - [sym_logical_expression] = STATE(616), - [sym_bitwise_expression] = STATE(616), - [sym_cast_expression] = STATE(616), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(616), - [sym_char_literal] = STATE(616), - [sym_assignment_expression] = STATE(616), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(616), - [sym_math_expression] = STATE(616), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(616), - [sym_equality_expression] = STATE(616), - [sym_relational_expression] = STATE(616), - [sym_sizeof_expression] = STATE(616), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(616), - [sym_concatenated_string] = STATE(616), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(1520), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1522), + [sym_concatenated_string] = STATE(623), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(623), + [sym_math_expression] = STATE(623), + [sym_cast_expression] = STATE(623), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(623), + [sym_assignment_expression] = STATE(623), + [sym_relational_expression] = STATE(623), + [sym_shift_expression] = STATE(623), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(623), + [sym_bitwise_expression] = STATE(623), + [sym_equality_expression] = STATE(623), + [sym_sizeof_expression] = STATE(623), + [sym_compound_literal_expression] = STATE(623), + [sym_parenthesized_expression] = STATE(623), + [sym_char_literal] = STATE(623), + [sym_null] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(1524), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(1528), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [348] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(879), + [aux_sym_concatenated_string_repeat1] = STATE(624), + [sym_string_literal] = STATE(624), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_PERCENT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [349] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(879), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [350] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(879), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(302), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(326), }, [351] = { - [sym_string_literal] = STATE(623), - [aux_sym_concatenated_string_repeat1] = STATE(623), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), }, [352] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_QMARK] = ACTIONS(1500), }, [353] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1564), }, [354] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1564), }, [355] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(907), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1510), }, [356] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(636), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), - }, - [357] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_RBRACK] = ACTIONS(1570), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1570), + [anon_sym_AMP_EQ] = ACTIONS(1570), + [anon_sym_DASH_EQ] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_AMP_AMP] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_DASH_GT] = ACTIONS(1570), + [anon_sym_LPAREN2] = ACTIONS(1570), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_COLON] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), [anon_sym_PLUS_EQ] = ACTIONS(1570), - [anon_sym_CARET_EQ] = ACTIONS(1570), + [anon_sym_STAR_EQ] = ACTIONS(1570), [anon_sym_LT_LT_EQ] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(1570), + [anon_sym_EQ_EQ] = ACTIONS(1570), + [anon_sym_GT_EQ] = ACTIONS(1570), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_CARET_EQ] = ACTIONS(1570), + [anon_sym_COMMA] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1570), [anon_sym_SLASH_EQ] = ACTIONS(1570), [anon_sym_GT_GT_EQ] = ACTIONS(1570), - [anon_sym_STAR_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_GT] = ACTIONS(1568), [anon_sym_PIPE_EQ] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1570), - [anon_sym_AMP_EQ] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1570), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1570), + }, + [357] = { + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1574), + [anon_sym_AMP_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym_AMP_AMP] = ACTIONS(1574), [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [anon_sym_DASH_GT] = ACTIONS(1574), + [anon_sym_LPAREN2] = ACTIONS(1574), + [anon_sym_GT_GT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_DASH_DASH] = ACTIONS(1574), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_LT_LT_EQ] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_PIPE_PIPE] = ACTIONS(1574), + [anon_sym_CARET_EQ] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS_PLUS] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_GT_GT_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_PIPE_EQ] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_LT_LT] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1574), }, [358] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(639), - [sym_logical_expression] = STATE(639), - [sym_bitwise_expression] = STATE(639), - [sym_cast_expression] = STATE(639), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(639), - [sym_char_literal] = STATE(639), - [sym_assignment_expression] = STATE(639), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(639), - [sym_math_expression] = STATE(639), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(639), - [sym_equality_expression] = STATE(639), - [sym_relational_expression] = STATE(639), - [sym_sizeof_expression] = STATE(639), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(639), - [sym_concatenated_string] = STATE(639), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(1574), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1578), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(907), + [aux_sym_for_statement_repeat1] = STATE(639), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [359] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(907), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1580), }, [360] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(907), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(1564), }, [361] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [362] = { - [sym_string_literal] = STATE(646), - [aux_sym_concatenated_string_repeat1] = STATE(646), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(115), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [363] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1618), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, [364] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [365] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1596), + [anon_sym_AMP_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_LT_LT_EQ] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_GT_GT_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [366] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(308), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(647), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [367] = { - [anon_sym_LPAREN2] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_COLON] = ACTIONS(1620), - [anon_sym_RBRACK] = ACTIONS(1620), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_CARET_EQ] = ACTIONS(1620), - [anon_sym_LT_LT_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_EQ_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_PIPE_PIPE] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_GT_GT_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1620), - [anon_sym_LT_LT] = ACTIONS(1622), - [anon_sym_AMP_AMP] = ACTIONS(1620), - [anon_sym_PIPE_EQ] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1620), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_AMP_EQ] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_CARET] = ACTIONS(1622), - [anon_sym_GT_GT] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_DASH_GT] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1620), + [sym_concatenated_string] = STATE(649), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_null] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(1602), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1600), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [368] = { - [sym_type_qualifier] = STATE(659), - [sym_function_declarator] = STATE(370), - [sym_array_declarator] = STATE(370), - [sym_pointer_declarator] = STATE(370), - [aux_sym_type_definition_repeat1] = STATE(659), - [sym__declarator] = STATE(370), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(935), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [aux_sym_concatenated_string_repeat1] = STATE(650), + [sym_string_literal] = STATE(650), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_PERCENT] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [369] = { - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(1624), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(1632), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [370] = { - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [sym_parameter_list] = STATE(381), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1634), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1634), }, [371] = { - [sym_type_qualifier] = STATE(662), - [sym_function_declarator] = STATE(661), - [sym_array_declarator] = STATE(661), - [sym_pointer_declarator] = STATE(661), - [aux_sym_type_definition_repeat1] = STATE(662), - [sym__declarator] = STATE(661), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1628), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [sym_function_declarator] = STATE(663), + [sym__declarator] = STATE(663), + [sym_type_qualifier] = STATE(664), + [sym_pointer_declarator] = STATE(663), + [sym_array_declarator] = STATE(663), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_identifier] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(330), }, [372] = { - [sym_union_specifier] = STATE(417), - [sym_macro_type_specifier] = STATE(417), - [sym__type_specifier] = STATE(417), - [aux_sym__declaration_specifiers_repeat1] = STATE(418), - [sym_sized_type_specifier] = STATE(417), - [sym_parameter_declaration] = STATE(415), - [sym_enum_specifier] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(419), - [sym__declaration_specifiers] = STATE(420), - [sym_storage_class_specifier] = STATE(418), - [sym_type_qualifier] = STATE(418), - [sym_struct_specifier] = STATE(417), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(11), - }, - [373] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(665), - [sym_logical_expression] = STATE(665), - [sym_bitwise_expression] = STATE(665), - [sym_cast_expression] = STATE(665), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(665), - [sym_char_literal] = STATE(665), - [sym_assignment_expression] = STATE(665), + [sym_function_declarator] = STATE(665), + [sym__declarator] = STATE(665), [sym_type_qualifier] = STATE(666), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(665), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(665), + [sym_pointer_declarator] = STATE(665), + [sym_array_declarator] = STATE(665), [aux_sym_type_definition_repeat1] = STATE(666), - [sym_conditional_expression] = STATE(665), - [sym_equality_expression] = STATE(665), - [sym_relational_expression] = STATE(665), - [sym_sizeof_expression] = STATE(665), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(665), - [sym_concatenated_string] = STATE(665), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1632), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(945), + }, + [373] = { + [sym_parameter_list] = STATE(668), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), }, [374] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(667), - [sym_logical_expression] = STATE(667), - [sym_bitwise_expression] = STATE(667), - [sym_cast_expression] = STATE(667), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(667), - [sym_char_literal] = STATE(667), - [sym_assignment_expression] = STATE(667), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(667), - [sym_math_expression] = STATE(667), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(667), - [sym_equality_expression] = STATE(667), - [sym_relational_expression] = STATE(667), - [sym_sizeof_expression] = STATE(667), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(667), - [sym_initializer_list] = STATE(668), - [sym_concatenated_string] = STATE(667), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_concatenated_string] = STATE(670), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(670), + [sym_math_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(670), + [sym_assignment_expression] = STATE(670), + [sym_relational_expression] = STATE(670), + [sym_shift_expression] = STATE(670), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_initializer_list] = STATE(669), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(670), + [sym_bitwise_expression] = STATE(670), + [sym_equality_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_compound_literal_expression] = STATE(670), + [sym_parenthesized_expression] = STATE(670), + [sym_char_literal] = STATE(670), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1644), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1642), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [375] = { - [sym__declarator] = STATE(669), - [sym_function_declarator] = STATE(669), - [sym_array_declarator] = STATE(669), - [sym_pointer_declarator] = STATE(669), - [sym_init_declarator] = STATE(670), - [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_case] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [anon_sym_volatile] = ACTIONS(1646), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1067), - }, - [376] = { - [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_goto] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), [anon_sym_default] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), [anon_sym__Atomic] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(1644), - [anon_sym_restrict] = ACTIONS(1646), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1644), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_restrict] = ACTIONS(1646), [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), [anon_sym_union] = ACTIONS(1646), [anon_sym_unsigned] = ACTIONS(1646), [anon_sym_short] = ACTIONS(1646), [anon_sym_do] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_LPAREN2] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_LPAREN2] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), [sym_true] = ACTIONS(1646), [sym_primitive_type] = ACTIONS(1646), [anon_sym_for] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_break] = ACTIONS(1646), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), [anon_sym_static] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_register] = ACTIONS(1646), [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1648), [anon_sym_if] = ACTIONS(1646), [anon_sym_switch] = ACTIONS(1646), [sym_false] = ACTIONS(1646), [anon_sym_enum] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1648), [anon_sym_return] = ACTIONS(1646), [anon_sym_continue] = ACTIONS(1646), - [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), [anon_sym_auto] = ACTIONS(1646), [anon_sym_inline] = ACTIONS(1646), [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_case] = ACTIONS(1646), - [sym_null] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), + }, + [376] = { + [sym_struct_specifier] = STATE(524), + [sym_macro_type_specifier] = STATE(524), + [sym_attribute_specifier] = STATE(527), + [sym__type_specifier] = STATE(524), + [sym_union_specifier] = STATE(524), + [sym_type_qualifier] = STATE(527), + [sym_parameter_declaration] = STATE(522), + [aux_sym__declaration_specifiers_repeat1] = STATE(527), + [sym_sized_type_specifier] = STATE(524), + [sym_enum_specifier] = STATE(524), + [sym__declaration_specifiers] = STATE(528), + [sym_storage_class_specifier] = STATE(527), + [aux_sym_sized_type_specifier_repeat1] = STATE(525), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [377] = { - [anon_sym_LPAREN2] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1650), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_primitive_type] = ACTIONS(1650), - [sym_true] = ACTIONS(1650), + [sym_function_declarator] = STATE(671), + [sym__declarator] = STATE(671), + [sym_init_declarator] = STATE(672), + [sym_pointer_declarator] = STATE(671), + [sym_array_declarator] = STATE(671), [sym_identifier] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1648), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym_null] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [ts_builtin_sym_end] = ACTIONS(1648), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(332), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1648), }, [378] = { - [aux_sym_declaration_repeat1] = STATE(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(1652), + [sym_concatenated_string] = STATE(676), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(676), + [sym_math_expression] = STATE(676), + [sym_cast_expression] = STATE(676), + [sym_type_qualifier] = STATE(675), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(675), + [sym_conditional_expression] = STATE(676), + [sym_assignment_expression] = STATE(676), + [sym_relational_expression] = STATE(676), + [sym_shift_expression] = STATE(676), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(676), + [sym_bitwise_expression] = STATE(676), + [sym_equality_expression] = STATE(676), + [sym_sizeof_expression] = STATE(676), + [sym_compound_literal_expression] = STATE(676), + [sym_parenthesized_expression] = STATE(676), + [sym_char_literal] = STATE(676), + [sym_null] = ACTIONS(1652), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(1654), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [379] = { - [anon_sym_LPAREN2] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1662), + [anon_sym_unsigned] = ACTIONS(1662), + [anon_sym_volatile] = ACTIONS(1662), + [anon_sym_short] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1660), + [sym_null] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1662), + [anon_sym_do] = ACTIONS(1662), + [anon_sym_goto] = ACTIONS(1662), + [ts_builtin_sym_end] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [sym_preproc_directive] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1660), + [aux_sym_preproc_if_token1] = ACTIONS(1662), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_LPAREN2] = ACTIONS(1660), + [anon_sym_typedef] = ACTIONS(1662), + [anon_sym_DASH_DASH] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym__Atomic] = ACTIONS(1662), + [sym_primitive_type] = ACTIONS(1662), + [sym_true] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1662), + [aux_sym_preproc_include_token1] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_restrict] = ACTIONS(1662), + [anon_sym_register] = ACTIONS(1662), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_switch] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_long] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [sym_number_literal] = ACTIONS(1660), + [aux_sym_preproc_def_token1] = ACTIONS(1662), + [sym_false] = ACTIONS(1662), + [anon_sym_auto] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_inline] = ACTIONS(1662), + [anon_sym___attribute__] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), }, [380] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(1015), + [aux_sym_declaration_repeat1] = STATE(678), + [anon_sym_COMMA] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1664), }, [381] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_attribute_specifier] = STATE(679), + [aux_sym_function_declarator_repeat1] = STATE(679), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LPAREN2] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1666), }, [382] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1656), + [aux_sym__declaration_specifiers_repeat1] = STATE(382), + [sym_attribute_specifier] = STATE(382), + [sym_type_qualifier] = STATE(382), + [sym_storage_class_specifier] = STATE(382), + [anon_sym_volatile] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(836), + [anon_sym_register] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(1670), + [sym_identifier] = ACTIONS(834), + [anon_sym_const] = ACTIONS(836), + [anon_sym_LPAREN2] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym__Atomic] = ACTIONS(836), + [anon_sym_auto] = ACTIONS(839), + [anon_sym_inline] = ACTIONS(839), + [anon_sym___attribute__] = ACTIONS(842), }, [383] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(675), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(681), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(681), + [sym_math_expression] = STATE(681), + [sym_cast_expression] = STATE(681), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(681), + [sym_assignment_expression] = STATE(681), + [sym_relational_expression] = STATE(681), + [sym_shift_expression] = STATE(681), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(681), + [sym_bitwise_expression] = STATE(681), + [sym_equality_expression] = STATE(681), + [sym_sizeof_expression] = STATE(681), + [sym_compound_literal_expression] = STATE(681), + [sym_parenthesized_expression] = STATE(681), + [sym_char_literal] = STATE(681), + [sym_null] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1672), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(1676), + [sym_true] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [384] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [385] = { - [sym_string_literal] = STATE(676), - [aux_sym_concatenated_string_repeat1] = STATE(676), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [sym_parenthesized_expression] = STATE(683), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [386] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(677), - [sym_logical_expression] = STATE(677), - [sym_bitwise_expression] = STATE(677), - [sym_cast_expression] = STATE(677), - [sym_field_expression] = STATE(677), - [sym_compound_literal_expression] = STATE(677), - [sym_char_literal] = STATE(677), - [sym_assignment_expression] = STATE(677), - [sym_pointer_expression] = STATE(677), - [sym_shift_expression] = STATE(677), - [sym_math_expression] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_conditional_expression] = STATE(677), - [sym_equality_expression] = STATE(677), - [sym_relational_expression] = STATE(677), - [sym_sizeof_expression] = STATE(677), - [sym_subscript_expression] = STATE(677), - [sym_parenthesized_expression] = STATE(677), - [sym_concatenated_string] = STATE(677), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1664), - [sym_true] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [387] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(678), - [sym_logical_expression] = STATE(678), - [sym_bitwise_expression] = STATE(678), - [sym_cast_expression] = STATE(678), - [sym_field_expression] = STATE(678), - [sym_compound_literal_expression] = STATE(678), - [sym_char_literal] = STATE(678), - [sym_assignment_expression] = STATE(678), - [sym_pointer_expression] = STATE(678), - [sym_shift_expression] = STATE(678), - [sym_math_expression] = STATE(678), - [sym_call_expression] = STATE(678), - [sym_conditional_expression] = STATE(678), - [sym_equality_expression] = STATE(678), - [sym_relational_expression] = STATE(678), - [sym_sizeof_expression] = STATE(678), - [sym_subscript_expression] = STATE(678), - [sym_parenthesized_expression] = STATE(678), - [sym_concatenated_string] = STATE(678), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1668), - [sym_true] = ACTIONS(1668), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(107), + [sym_parenthesized_expression] = STATE(685), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [388] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(679), - [sym_logical_expression] = STATE(679), - [sym_bitwise_expression] = STATE(679), - [sym_cast_expression] = STATE(679), - [sym_field_expression] = STATE(679), - [sym_compound_literal_expression] = STATE(679), - [sym_char_literal] = STATE(679), - [sym_assignment_expression] = STATE(679), - [sym_pointer_expression] = STATE(679), - [sym_shift_expression] = STATE(679), - [sym_math_expression] = STATE(679), - [sym_call_expression] = STATE(679), - [sym_conditional_expression] = STATE(679), - [sym_equality_expression] = STATE(679), - [sym_relational_expression] = STATE(679), - [sym_sizeof_expression] = STATE(679), - [sym_subscript_expression] = STATE(679), - [sym_parenthesized_expression] = STATE(679), - [sym_concatenated_string] = STATE(679), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1672), - [sym_true] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1674), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(1682), }, [389] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(680), - [sym_logical_expression] = STATE(680), - [sym_bitwise_expression] = STATE(680), - [sym_cast_expression] = STATE(680), - [sym_field_expression] = STATE(680), - [sym_compound_literal_expression] = STATE(680), - [sym_char_literal] = STATE(680), - [sym_assignment_expression] = STATE(680), - [sym_pointer_expression] = STATE(680), - [sym_shift_expression] = STATE(680), - [sym_math_expression] = STATE(680), - [sym_call_expression] = STATE(680), - [sym_conditional_expression] = STATE(680), - [sym_equality_expression] = STATE(680), - [sym_relational_expression] = STATE(680), - [sym_sizeof_expression] = STATE(680), - [sym_subscript_expression] = STATE(680), - [sym_parenthesized_expression] = STATE(680), - [sym_concatenated_string] = STATE(680), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1678), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [390] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(681), - [sym_logical_expression] = STATE(681), - [sym_bitwise_expression] = STATE(681), - [sym_cast_expression] = STATE(681), - [sym_field_expression] = STATE(681), - [sym_compound_literal_expression] = STATE(681), - [sym_char_literal] = STATE(681), - [sym_assignment_expression] = STATE(681), - [sym_pointer_expression] = STATE(681), - [sym_shift_expression] = STATE(681), - [sym_math_expression] = STATE(681), - [sym_call_expression] = STATE(681), - [sym_conditional_expression] = STATE(681), - [sym_equality_expression] = STATE(681), - [sym_relational_expression] = STATE(681), - [sym_sizeof_expression] = STATE(681), - [sym_subscript_expression] = STATE(681), - [sym_parenthesized_expression] = STATE(681), - [sym_concatenated_string] = STATE(681), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1680), - [sym_true] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1682), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(107), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [391] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(682), - [sym_logical_expression] = STATE(682), - [sym_bitwise_expression] = STATE(682), - [sym_cast_expression] = STATE(682), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(682), - [sym_char_literal] = STATE(682), - [sym_assignment_expression] = STATE(682), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(682), - [sym_math_expression] = STATE(682), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(682), - [sym_equality_expression] = STATE(682), - [sym_relational_expression] = STATE(682), - [sym_sizeof_expression] = STATE(682), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(682), - [sym_concatenated_string] = STATE(682), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(879), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(695), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(695), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(695), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(696), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(696), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(695), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(695), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(695), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(695), + [sym_field_declaration] = STATE(695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(1694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [392] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(683), - [sym_logical_expression] = STATE(683), - [sym_bitwise_expression] = STATE(683), - [sym_cast_expression] = STATE(683), - [sym_field_expression] = STATE(683), - [sym_compound_literal_expression] = STATE(683), - [sym_char_literal] = STATE(683), - [sym_assignment_expression] = STATE(683), - [sym_pointer_expression] = STATE(683), - [sym_shift_expression] = STATE(683), - [sym_math_expression] = STATE(683), - [sym_call_expression] = STATE(683), - [sym_conditional_expression] = STATE(683), - [sym_equality_expression] = STATE(683), - [sym_relational_expression] = STATE(683), - [sym_sizeof_expression] = STATE(683), - [sym_subscript_expression] = STATE(683), - [sym_parenthesized_expression] = STATE(683), - [sym_concatenated_string] = STATE(683), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1688), - [sym_true] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym___attribute__] = ACTIONS(398), }, [393] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(684), - [sym_logical_expression] = STATE(684), - [sym_bitwise_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_field_expression] = STATE(684), - [sym_compound_literal_expression] = STATE(684), - [sym_char_literal] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(684), - [sym_shift_expression] = STATE(684), - [sym_math_expression] = STATE(684), - [sym_call_expression] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_equality_expression] = STATE(684), - [sym_relational_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_subscript_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(684), - [sym_concatenated_string] = STATE(684), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1694), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(107), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1700), }, [394] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(107), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(700), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(700), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(700), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(701), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(701), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(700), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(700), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(700), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(700), + [sym_field_declaration] = STATE(700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(1702), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [395] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(685), - [sym_logical_expression] = STATE(685), - [sym_bitwise_expression] = STATE(685), - [sym_cast_expression] = STATE(685), - [sym_field_expression] = STATE(685), - [sym_compound_literal_expression] = STATE(685), - [sym_char_literal] = STATE(685), - [sym_assignment_expression] = STATE(685), - [sym_pointer_expression] = STATE(685), - [sym_shift_expression] = STATE(685), - [sym_math_expression] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_conditional_expression] = STATE(685), - [sym_equality_expression] = STATE(685), - [sym_relational_expression] = STATE(685), - [sym_sizeof_expression] = STATE(685), - [sym_subscript_expression] = STATE(685), - [sym_parenthesized_expression] = STATE(685), - [sym_concatenated_string] = STATE(685), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1696), - [sym_true] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(107), + [sym_preproc_params] = STATE(704), + [sym_preproc_arg] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1706), }, [396] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(686), - [sym_logical_expression] = STATE(686), - [sym_bitwise_expression] = STATE(686), - [sym_cast_expression] = STATE(686), - [sym_field_expression] = STATE(686), - [sym_compound_literal_expression] = STATE(686), - [sym_char_literal] = STATE(686), - [sym_assignment_expression] = STATE(686), - [sym_pointer_expression] = STATE(686), - [sym_shift_expression] = STATE(686), - [sym_math_expression] = STATE(686), - [sym_call_expression] = STATE(686), - [sym_conditional_expression] = STATE(686), - [sym_equality_expression] = STATE(686), - [sym_relational_expression] = STATE(686), - [sym_sizeof_expression] = STATE(686), - [sym_subscript_expression] = STATE(686), - [sym_parenthesized_expression] = STATE(686), - [sym_concatenated_string] = STATE(686), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1700), - [sym_true] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym__declaration_specifiers_repeat1] = STATE(705), + [sym_attribute_specifier] = STATE(705), + [sym_type_qualifier] = STATE(705), + [sym_storage_class_specifier] = STATE(705), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [397] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_restrict] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(1710), + [anon_sym_COLON] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_auto] = ACTIONS(1708), + [anon_sym_inline] = ACTIONS(1708), + [anon_sym___attribute__] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1710), }, [398] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym__declaration_specifiers] = STATE(176), + [sym_preproc_def] = STATE(398), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(398), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(398), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(398), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(398), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(398), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(398), + [sym_field_declaration] = STATE(398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_volatile] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(1727), + [sym_preproc_directive] = ACTIONS(1730), + [anon_sym_signed] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(1733), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1721), + [sym_identifier] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1712), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1721), + [anon_sym_auto] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1747), + [anon_sym_inline] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1750), }, [399] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(399), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(702), + [anon_sym_restrict] = ACTIONS(702), + [anon_sym_register] = ACTIONS(702), + [anon_sym_extern] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [sym_identifier] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym__Atomic] = ACTIONS(702), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_auto] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(702), + [anon_sym___attribute__] = ACTIONS(702), }, [400] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym__declaration_specifiers_repeat1] = STATE(706), + [sym_attribute_specifier] = STATE(706), + [sym_type_qualifier] = STATE(706), + [sym_storage_class_specifier] = STATE(706), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [401] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(1756), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_COLON] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), }, [402] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_field_declarator] = STATE(708), + [sym_array_field_declarator] = STATE(708), + [sym_type_qualifier] = STATE(707), + [aux_sym_type_definition_repeat1] = STATE(707), + [sym_function_field_declarator] = STATE(708), + [sym__field_declarator] = STATE(708), + [sym_identifier] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1015), }, [403] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_field_declarator] = STATE(710), + [sym_array_field_declarator] = STATE(710), + [sym_function_field_declarator] = STATE(710), + [sym__field_declarator] = STATE(710), + [sym_identifier] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), }, [404] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(711), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(711), + [sym_math_expression] = STATE(711), + [sym_cast_expression] = STATE(711), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(711), + [sym_assignment_expression] = STATE(711), + [sym_relational_expression] = STATE(711), + [sym_shift_expression] = STATE(711), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(711), + [sym_bitwise_expression] = STATE(711), + [sym_equality_expression] = STATE(711), + [sym_sizeof_expression] = STATE(711), + [sym_compound_literal_expression] = STATE(711), + [sym_parenthesized_expression] = STATE(711), + [sym_char_literal] = STATE(711), + [sym_null] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1762), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [405] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsigned] = ACTIONS(1766), + [anon_sym_volatile] = ACTIONS(1766), + [anon_sym_short] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_restrict] = ACTIONS(1766), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(1766), + [sym_preproc_directive] = ACTIONS(1766), + [anon_sym_signed] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1766), + [anon_sym_long] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [anon_sym__Atomic] = ACTIONS(1766), + [anon_sym_auto] = ACTIONS(1766), + [sym_primitive_type] = ACTIONS(1766), + [anon_sym_inline] = ACTIONS(1766), + [anon_sym___attribute__] = ACTIONS(1766), }, [406] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1770), }, [407] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(382), + [aux_sym_field_declaration_repeat1] = STATE(715), + [sym_bitfield_clause] = STATE(716), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1770), }, [408] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(81), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(101), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(1776), }, [409] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(701), - [sym_logical_expression] = STATE(701), - [sym_bitwise_expression] = STATE(701), - [sym_cast_expression] = STATE(701), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(701), - [sym_field_designator] = STATE(702), - [sym_char_literal] = STATE(701), - [sym_assignment_expression] = STATE(701), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(701), - [sym_math_expression] = STATE(701), - [sym_call_expression] = STATE(691), - [aux_sym_initializer_pair_repeat1] = STATE(702), - [sym_initializer_pair] = STATE(703), - [sym_subscript_designator] = STATE(702), - [sym_conditional_expression] = STATE(701), - [sym_equality_expression] = STATE(701), - [sym_relational_expression] = STATE(701), - [sym_sizeof_expression] = STATE(701), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(701), - [sym_initializer_list] = STATE(703), - [sym_concatenated_string] = STATE(701), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(1714), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [sym_null] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1734), + [sym_parenthesized_expression] = STATE(417), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(209), }, [410] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_COLON] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_CARET_EQ] = ACTIONS(1736), - [anon_sym_LT_LT_EQ] = ACTIONS(1736), - [anon_sym_QMARK] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1738), - [anon_sym_EQ_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_GT_GT_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1736), - [anon_sym_LT_LT] = ACTIONS(1738), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_EQ] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_AMP_EQ] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym_GT_GT] = ACTIONS(1738), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(322), + [sym_parenthesized_expression] = STATE(718), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [411] = { - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_COLON] = ACTIONS(1740), - [anon_sym_RBRACK] = ACTIONS(1740), - [anon_sym_PLUS_EQ] = ACTIONS(1740), - [anon_sym_CARET_EQ] = ACTIONS(1740), - [anon_sym_LT_LT_EQ] = ACTIONS(1740), - [anon_sym_QMARK] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_EQ_EQ] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_DASH_EQ] = ACTIONS(1740), - [anon_sym_SLASH_EQ] = ACTIONS(1740), - [anon_sym_GT_GT_EQ] = ACTIONS(1740), - [anon_sym_STAR_EQ] = ACTIONS(1740), - [anon_sym_BANG_EQ] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_AMP_AMP] = ACTIONS(1740), - [anon_sym_PIPE_EQ] = ACTIONS(1740), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1740), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1740), - [anon_sym_AMP_EQ] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_LT_EQ] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1742), - [anon_sym_DASH_GT] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [412] = { - [sym_abstract_function_declarator] = STATE(704), - [sym__abstract_declarator] = STATE(704), - [sym_abstract_array_declarator] = STATE(704), - [sym_abstract_pointer_declarator] = STATE(704), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(428), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [sym_parenthesized_expression] = STATE(720), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [413] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1786), }, [414] = { - [sym_string_literal] = STATE(414), - [aux_sym_concatenated_string_repeat1] = STATE(414), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), }, [415] = { - [aux_sym_parameter_list_repeat1] = STATE(707), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1748), + [sym_concatenated_string] = STATE(724), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(724), + [sym_math_expression] = STATE(724), + [sym_cast_expression] = STATE(724), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(724), + [sym_assignment_expression] = STATE(724), + [sym_relational_expression] = STATE(724), + [sym_shift_expression] = STATE(724), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(724), + [sym_bitwise_expression] = STATE(724), + [sym_equality_expression] = STATE(724), + [sym_sizeof_expression] = STATE(724), + [sym_compound_literal_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_char_literal] = STATE(724), + [sym_null] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1792), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1790), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(1794), + [sym_true] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [416] = { - [anon_sym_LPAREN2] = ACTIONS(1750), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1750), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [417] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(708), - [sym_storage_class_specifier] = STATE(708), - [sym_type_qualifier] = STATE(708), - [anon_sym_LPAREN2] = ACTIONS(271), - [sym_identifier] = ACTIONS(273), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(271), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [anon_sym_case] = ACTIONS(1798), + [sym_null] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_typedef] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1798), + [anon_sym__Atomic] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [sym_number_literal] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1800), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_LPAREN2] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1798), + [sym_true] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1798), + [sym_false] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1800), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), }, [418] = { - [sym_union_specifier] = STATE(709), - [sym_macro_type_specifier] = STATE(709), - [sym__type_specifier] = STATE(709), - [sym_sized_type_specifier] = STATE(709), - [aux_sym__declaration_specifiers_repeat1] = STATE(132), - [sym_enum_specifier] = STATE(709), - [aux_sym_sized_type_specifier_repeat1] = STATE(419), - [sym_storage_class_specifier] = STATE(132), - [sym_type_qualifier] = STATE(132), - [sym_struct_specifier] = STATE(709), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1752), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [419] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(710), - [anon_sym_LPAREN2] = ACTIONS(277), - [sym_identifier] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_auto] = ACTIONS(282), - [anon_sym_volatile] = ACTIONS(282), - [anon_sym_inline] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_long] = ACTIONS(1754), - [sym_primitive_type] = ACTIONS(286), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(282), - [anon_sym_restrict] = ACTIONS(282), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_signed] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_register] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [420] = { - [sym_parameter_list] = STATE(190), - [sym_abstract_array_declarator] = STATE(714), - [sym_pointer_declarator] = STATE(713), - [sym_abstract_function_declarator] = STATE(714), - [sym__declarator] = STATE(713), - [sym_abstract_pointer_declarator] = STATE(714), - [sym_array_declarator] = STATE(713), - [sym__abstract_declarator] = STATE(714), - [sym_function_declarator] = STATE(713), - [anon_sym_LPAREN2] = ACTIONS(1756), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(408), - [sym_identifier] = ACTIONS(1760), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1820), }, [421] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1764), + [aux_sym_concatenated_string_repeat1] = STATE(421), + [sym_string_literal] = STATE(421), + [anon_sym_PERCENT] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [422] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(1766), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [423] = { - [anon_sym_LPAREN2] = ACTIONS(1768), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [424] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1766), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [425] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(718), - [sym_logical_expression] = STATE(718), - [sym_bitwise_expression] = STATE(718), - [sym_cast_expression] = STATE(718), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(718), - [sym_char_literal] = STATE(718), - [sym_assignment_expression] = STATE(718), - [sym_type_qualifier] = STATE(719), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(718), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(718), - [aux_sym_type_definition_repeat1] = STATE(719), - [sym_conditional_expression] = STATE(718), - [sym_equality_expression] = STATE(718), - [sym_relational_expression] = STATE(718), - [sym_sizeof_expression] = STATE(718), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(718), - [sym_concatenated_string] = STATE(718), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1772), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(1766), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [426] = { - [sym_abstract_function_declarator] = STATE(720), - [sym__abstract_declarator] = STATE(720), - [sym_abstract_array_declarator] = STATE(720), - [sym_abstract_pointer_declarator] = STATE(720), - [sym_parameter_list] = STATE(190), - [sym_type_qualifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(428), - [anon_sym_LPAREN2] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(402), - [anon_sym__Atomic] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(402), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [427] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1776), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [428] = { - [sym_type_qualifier] = STATE(428), - [aux_sym_type_definition_repeat1] = STATE(428), - [anon_sym_LPAREN2] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1780), - [anon_sym__Atomic] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1780), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [429] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(718), - [sym_logical_expression] = STATE(718), - [sym_bitwise_expression] = STATE(718), - [sym_cast_expression] = STATE(718), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(718), - [sym_char_literal] = STATE(718), - [sym_assignment_expression] = STATE(718), - [sym_type_qualifier] = STATE(721), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(718), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(718), - [aux_sym_type_definition_repeat1] = STATE(721), - [sym_conditional_expression] = STATE(718), - [sym_equality_expression] = STATE(718), - [sym_relational_expression] = STATE(718), - [sym_sizeof_expression] = STATE(718), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(718), - [sym_concatenated_string] = STATE(718), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1772), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(1766), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [430] = { - [anon_sym_LPAREN2] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [431] = { - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_auto] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [432] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(723), - [sym_logical_expression] = STATE(723), - [sym_bitwise_expression] = STATE(723), - [sym_cast_expression] = STATE(723), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(723), - [sym_char_literal] = STATE(723), - [sym_assignment_expression] = STATE(723), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(723), - [sym_math_expression] = STATE(723), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(723), - [sym_equality_expression] = STATE(723), - [sym_relational_expression] = STATE(723), - [sym_sizeof_expression] = STATE(723), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(723), - [sym_concatenated_string] = STATE(723), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), + [sym_null] = ACTIONS(340), + [anon_sym_volatile] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(340), + [aux_sym_preproc_if_token2] = ACTIONS(340), + [anon_sym_const] = ACTIONS(340), + [anon_sym_typedef] = ACTIONS(340), + [anon_sym_DASH_DASH] = ACTIONS(342), + [anon_sym__Atomic] = ACTIONS(340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(340), + [sym_number_literal] = ACTIONS(342), + [anon_sym_restrict] = ACTIONS(340), + [anon_sym_extern] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(342), + [anon_sym_struct] = ACTIONS(340), + [anon_sym_signed] = ACTIONS(340), + [anon_sym_long] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(340), + [aux_sym_preproc_elif_token1] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym___attribute__] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_union] = ACTIONS(340), + [anon_sym_unsigned] = ACTIONS(340), + [anon_sym_short] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [aux_sym_preproc_else_token1] = ACTIONS(340), + [anon_sym_TILDE] = ACTIONS(342), + [sym_preproc_directive] = ACTIONS(340), + [anon_sym_AMP] = ACTIONS(342), + [aux_sym_preproc_if_token1] = ACTIONS(340), + [anon_sym_LPAREN2] = ACTIONS(342), + [anon_sym_else] = ACTIONS(340), + [sym_true] = ACTIONS(340), + [sym_primitive_type] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_break] = ACTIONS(340), + [aux_sym_preproc_include_token1] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_static] = ACTIONS(340), + [anon_sym_register] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_if] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [anon_sym_enum] = ACTIONS(340), [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(340), + [anon_sym_continue] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(342), + [aux_sym_preproc_def_token1] = ACTIONS(340), + [anon_sym_auto] = ACTIONS(340), + [anon_sym_inline] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(340), }, [433] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [434] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(725), - [sym_logical_expression] = STATE(725), - [sym_bitwise_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(725), - [sym_char_literal] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(725), - [sym_math_expression] = STATE(725), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(725), - [sym_equality_expression] = STATE(725), - [sym_relational_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(1795), - [sym_false] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), }, [435] = { - [sym_type_qualifier] = STATE(726), - [sym_function_declarator] = STATE(370), - [sym_array_declarator] = STATE(370), - [sym_pointer_declarator] = STATE(370), - [aux_sym_type_definition_repeat1] = STATE(726), - [sym__declarator] = STATE(370), - [anon_sym_LPAREN2] = ACTIONS(328), [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(935), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1830), }, [436] = { - [aux_sym_declaration_repeat1] = STATE(378), - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), + [sym_continue_statement] = STATE(732), + [sym_preproc_function_def] = STATE(732), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(732), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(732), + [sym_for_statement] = STATE(732), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(732), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(732), + [sym_return_statement] = STATE(732), + [sym_preproc_include] = STATE(732), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(732), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(732), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_preproc_def] = STATE(732), + [sym_goto_statement] = STATE(732), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(732), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(732), + [sym_expression_statement] = STATE(732), + [sym_do_statement] = STATE(732), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(732), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(732), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(732), + [sym_preproc_if] = STATE(732), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(732), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [437] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(727), - [sym_storage_class_specifier] = STATE(727), - [sym_type_qualifier] = STATE(727), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_while_statement] = STATE(733), + [sym_continue_statement] = STATE(733), + [sym_goto_statement] = STATE(733), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(733), + [sym_expression_statement] = STATE(733), + [sym_if_statement] = STATE(733), + [sym_do_statement] = STATE(733), + [sym_for_statement] = STATE(733), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(733), + [sym_return_statement] = STATE(733), + [sym_break_statement] = STATE(733), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(733), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [438] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(728), - [sym_storage_class_specifier] = STATE(728), - [sym_type_qualifier] = STATE(728), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_identifier] = ACTIONS(1834), + [sym_comment] = ACTIONS(3), }, [439] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(439), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_long] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_auto] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_inline] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [sym_identifier] = ACTIONS(829), - [anon_sym_unsigned] = ACTIONS(1801), - [anon_sym_short] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_signed] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1836), + [sym_preproc_arg] = ACTIONS(1838), }, [440] = { - [sym_do_statement] = STATE(730), - [sym_goto_statement] = STATE(730), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(730), - [sym_switch_statement] = STATE(730), - [sym_for_statement] = STATE(730), - [sym_return_statement] = STATE(730), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(730), - [sym_continue_statement] = STATE(730), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(730), - [sym_labeled_statement] = STATE(730), - [sym_expression_statement] = STATE(730), - [sym_while_statement] = STATE(730), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(1840), }, [441] = { - [sym__expression] = STATE(732), - [sym_logical_expression] = STATE(732), - [sym_bitwise_expression] = STATE(732), - [sym_cast_expression] = STATE(732), - [sym_declaration] = STATE(731), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(732), - [sym_char_literal] = STATE(732), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(732), - [sym_equality_expression] = STATE(732), - [sym_relational_expression] = STATE(732), - [sym_sizeof_expression] = STATE(732), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(732), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(732), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(732), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(732), - [sym_math_expression] = STATE(732), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_struct_specifier] = STATE(739), + [sym_macro_type_specifier] = STATE(739), + [sym_type_qualifier] = STATE(738), + [aux_sym_type_definition_repeat1] = STATE(738), + [sym_union_specifier] = STATE(739), + [sym__type_specifier] = STATE(739), + [sym_sized_type_specifier] = STATE(739), + [sym_enum_specifier] = STATE(739), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [442] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1844), }, [443] = { - [anon_sym_LPAREN2] = ACTIONS(1814), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1846), }, [444] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1816), - [sym_preproc_arg] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), }, [445] = { + [sym_string_literal] = STATE(743), + [sym_system_lib_string] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1852), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(1820), }, [446] = { - [sym_union_specifier] = STATE(739), - [sym_macro_type_specifier] = STATE(739), - [sym_struct_specifier] = STATE(739), - [sym__type_specifier] = STATE(739), - [sym_sized_type_specifier] = STATE(739), - [sym_enum_specifier] = STATE(739), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(738), - [sym_type_qualifier] = STATE(738), - [anon_sym_short] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), + [sym_string_literal] = STATE(745), + [anon_sym_union] = ACTIONS(201), + [anon_sym_unsigned] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_short] = ACTIONS(201), + [anon_sym_static] = ACTIONS(201), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(201), + [anon_sym_signed] = ACTIONS(201), + [anon_sym_enum] = ACTIONS(201), + [anon_sym_long] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_const] = ACTIONS(201), + [anon_sym__Atomic] = ACTIONS(201), + [sym_primitive_type] = ACTIONS(201), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(79), }, [447] = { - [sym_parenthesized_expression] = STATE(740), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_parenthesized_expression] = STATE(746), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [448] = { - [sym_parenthesized_expression] = STATE(741), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_parenthesized_expression] = STATE(747), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(209), }, [449] = { - [sym_parenthesized_expression] = STATE(742), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [450] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(744), - [sym_logical_expression] = STATE(744), - [sym_bitwise_expression] = STATE(744), - [sym_cast_expression] = STATE(744), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(744), - [sym_char_literal] = STATE(744), - [sym_assignment_expression] = STATE(744), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(744), - [sym_math_expression] = STATE(744), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(744), - [sym_equality_expression] = STATE(744), - [sym_relational_expression] = STATE(744), - [sym_sizeof_expression] = STATE(744), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(744), - [sym_concatenated_string] = STATE(744), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(1828), - [sym_false] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(750), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(750), + [sym_math_expression] = STATE(750), + [sym_cast_expression] = STATE(750), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(750), + [sym_assignment_expression] = STATE(750), + [sym_relational_expression] = STATE(750), + [sym_shift_expression] = STATE(750), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(750), + [sym_bitwise_expression] = STATE(750), + [sym_equality_expression] = STATE(750), + [sym_sizeof_expression] = STATE(750), + [sym_compound_literal_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_char_literal] = STATE(750), + [sym_null] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1858), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1856), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(1860), + [sym_true] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [451] = { + [sym_parenthesized_expression] = STATE(751), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(205), }, [452] = { [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1862), }, [453] = { - [sym_string_literal] = STATE(748), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [sym_system_lib_string] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_union] = ACTIONS(261), + [anon_sym_sizeof] = ACTIONS(261), + [anon_sym_unsigned] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(263), + [sym_null] = ACTIONS(261), + [sym_identifier] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_goto] = ACTIONS(261), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(261), + [sym_preproc_directive] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [aux_sym_preproc_if_token1] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(263), + [anon_sym_const] = ACTIONS(261), + [anon_sym_LPAREN2] = ACTIONS(263), + [anon_sym_typedef] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym_else] = ACTIONS(261), + [anon_sym__Atomic] = ACTIONS(261), + [sym_primitive_type] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(261), + [aux_sym_preproc_include_token1] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(263), + [anon_sym_static] = ACTIONS(261), + [anon_sym_restrict] = ACTIONS(261), + [anon_sym_register] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_if] = ACTIONS(261), + [anon_sym_struct] = ACTIONS(261), + [anon_sym_switch] = ACTIONS(261), + [anon_sym_signed] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_return] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(263), + [sym_number_literal] = ACTIONS(263), + [aux_sym_preproc_def_token1] = ACTIONS(261), + [sym_false] = ACTIONS(261), + [anon_sym_auto] = ACTIONS(261), + [anon_sym_SQUOTE] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(261), + [anon_sym___attribute__] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), }, [454] = { - [sym_string_literal] = STATE(749), - [anon_sym_long] = ACTIONS(153), - [anon_sym__Atomic] = ACTIONS(153), - [sym_primitive_type] = ACTIONS(153), - [anon_sym_auto] = ACTIONS(153), - [anon_sym_volatile] = ACTIONS(153), - [anon_sym_inline] = ACTIONS(153), - [anon_sym_extern] = ACTIONS(153), - [sym_identifier] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_union] = ACTIONS(153), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [anon_sym_static] = ACTIONS(153), - [anon_sym_restrict] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_register] = ACTIONS(153), - [anon_sym_const] = ACTIONS(153), + [sym_identifier] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), }, [455] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1866), }, [456] = { - [sym_do_statement] = STATE(751), - [sym_goto_statement] = STATE(751), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_return_statement] = STATE(751), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(751), - [sym_continue_statement] = STATE(751), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(751), - [sym_labeled_statement] = STATE(751), - [sym_expression_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), - }, - [457] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1840), - }, - [458] = { - [anon_sym_LPAREN2] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_long] = ACTIONS(255), - [anon_sym__Atomic] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [aux_sym_preproc_if_token2] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_static] = ACTIONS(255), - [anon_sym_restrict] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_if] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [sym_number_literal] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_union] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_struct] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_null] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(253), - [anon_sym_register] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - }, - [459] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1842), - }, - [460] = { - [sym_do_statement] = STATE(755), - [sym_preproc_def] = STATE(755), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), + [sym_continue_statement] = STATE(755), [sym_preproc_function_def] = STATE(755), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(755), - [sym_char_literal] = STATE(40), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(457), [sym_declaration] = STATE(755), - [sym_goto_statement] = STATE(755), - [sym__empty_declaration] = STATE(755), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), [sym_for_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(755), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), + [sym_comma_expression] = STATE(455), + [sym_equality_expression] = STATE(457), [sym_type_definition] = STATE(755), - [aux_sym_translation_unit_repeat1] = STATE(755), - [sym_break_statement] = STATE(755), + [sym_sizeof_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(755), + [sym_return_statement] = STATE(755), [sym_preproc_include] = STATE(755), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(755), + [sym_conditional_expression] = STATE(457), [sym_preproc_ifdef] = STATE(755), - [sym_linkage_specification] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_compound_statement] = STATE(755), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), + [sym_relational_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(755), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), [sym_labeled_statement] = STATE(755), - [sym_expression_statement] = STATE(755), [sym_while_statement] = STATE(755), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(1844), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_preproc_def] = STATE(755), + [sym_goto_statement] = STATE(755), + [sym_logical_expression] = STATE(457), + [sym_function_definition] = STATE(755), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(755), + [sym_expression_statement] = STATE(755), + [sym_do_statement] = STATE(755), + [sym__expression] = STATE(457), + [sym_preproc_call] = STATE(755), + [sym_bitwise_expression] = STATE(457), + [sym__declaration_specifiers] = STATE(458), + [sym_compound_literal_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym__empty_declaration] = STATE(755), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(755), + [sym_preproc_if] = STATE(755), + [sym_assignment_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_linkage_specification] = STATE(755), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1134), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(1138), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(1156), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, - [461] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(322), + [457] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(302), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(326), }, - [462] = { + [458] = { + [sym_function_declarator] = STATE(757), + [sym__declarator] = STATE(757), + [sym_init_declarator] = STATE(758), + [sym_pointer_declarator] = STATE(757), + [sym_array_declarator] = STATE(757), + [sym_identifier] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1872), + }, + [459] = { + [sym_null] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(398), + [aux_sym_preproc_if_token2] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym__Atomic] = ACTIONS(398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [sym_number_literal] = ACTIONS(396), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(396), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_while] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [aux_sym_preproc_elif_token1] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym___attribute__] = ACTIONS(398), + [anon_sym_sizeof] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_union] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_do] = ACTIONS(398), + [aux_sym_preproc_else_token1] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(396), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(396), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [anon_sym_LPAREN2] = ACTIONS(396), + [sym_true] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_for] = ACTIONS(398), + [anon_sym_break] = ACTIONS(398), + [aux_sym_preproc_include_token1] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_static] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_if] = ACTIONS(398), + [anon_sym_switch] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [anon_sym_return] = ACTIONS(398), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_SEMI] = ACTIONS(396), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + }, + [460] = { + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1874), + }, + [461] = { + [sym_continue_statement] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(761), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(762), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(762), + [sym_for_statement] = STATE(762), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(762), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(762), + [sym_return_statement] = STATE(762), + [sym_preproc_include] = STATE(762), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(762), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(762), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(762), + [sym_while_statement] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_goto_statement] = STATE(762), + [sym_preproc_else] = STATE(761), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(762), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(762), + [sym_expression_statement] = STATE(762), + [sym_do_statement] = STATE(762), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(762), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(762), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(762), + [sym_preproc_if] = STATE(762), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(762), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + }, + [462] = { + [sym_struct_specifier] = STATE(763), + [sym_macro_type_specifier] = STATE(763), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [sym_union_specifier] = STATE(763), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(763), + [sym_enum_specifier] = STATE(763), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [463] = { - [sym__declarator] = STATE(758), - [sym_function_declarator] = STATE(758), - [sym_array_declarator] = STATE(758), - [sym_pointer_declarator] = STATE(758), - [sym_init_declarator] = STATE(759), - [anon_sym_LPAREN2] = ACTIONS(328), + [sym_array_type_declarator] = STATE(764), + [sym_pointer_type_declarator] = STATE(764), + [sym_function_type_declarator] = STATE(764), + [sym__type_declarator] = STATE(764), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_SEMI] = ACTIONS(1850), }, [464] = { - [sym_do_statement] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_preproc_function_def] = STATE(760), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_function_definition] = STATE(760), - [sym_char_literal] = STATE(461), - [sym_declaration] = STATE(760), - [sym_goto_statement] = STATE(760), - [sym__empty_declaration] = STATE(760), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(760), - [sym_switch_statement] = STATE(760), - [sym_for_statement] = STATE(760), - [sym_return_statement] = STATE(760), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym__declaration_specifiers] = STATE(463), - [sym_parenthesized_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(760), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(760), - [aux_sym_translation_unit_repeat1] = STATE(760), - [sym_break_statement] = STATE(760), - [sym_preproc_include] = STATE(760), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(760), - [sym_preproc_ifdef] = STATE(760), - [sym_linkage_specification] = STATE(760), - [sym_continue_statement] = STATE(760), - [sym_compound_statement] = STATE(760), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(760), - [sym_expression_statement] = STATE(760), - [sym_while_statement] = STATE(760), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1081), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(1083), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(1085), - [aux_sym_preproc_if_token2] = ACTIONS(1852), - [sym_preproc_directive] = ACTIONS(1089), - [aux_sym_preproc_if_token1] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_typedef] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(1105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1109), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(766), + [sym_math_expression] = STATE(766), + [sym_cast_expression] = STATE(766), + [sym_declaration] = STATE(765), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(766), + [sym_bitwise_expression] = STATE(766), + [sym_equality_expression] = STATE(766), + [sym_sizeof_expression] = STATE(766), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(766), + [sym_parenthesized_expression] = STATE(766), + [sym_concatenated_string] = STATE(766), + [sym_char_literal] = STATE(766), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(766), + [sym_assignment_expression] = STATE(766), + [sym_relational_expression] = STATE(766), + [sym_shift_expression] = STATE(766), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(1880), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [465] = { - [anon_sym_LPAREN2] = ACTIONS(432), - [anon_sym_DASH_DASH] = ACTIONS(432), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [sym_true] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [aux_sym_preproc_else_token1] = ACTIONS(434), - [aux_sym_preproc_if_token2] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_typedef] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(432), - [sym_number_literal] = ACTIONS(432), - [anon_sym_return] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [aux_sym_preproc_include_token1] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_sizeof] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_unsigned] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(432), - [sym_null] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_do] = ACTIONS(434), - [anon_sym_goto] = ACTIONS(434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [aux_sym_preproc_elif_token1] = ACTIONS(434), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_register] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(434), - [anon_sym_LBRACE] = ACTIONS(432), + [sym_null] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(563), + [aux_sym_preproc_if_token2] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym__Atomic] = ACTIONS(563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(563), + [sym_number_literal] = ACTIONS(565), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_signed] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(563), + [aux_sym_preproc_elif_token1] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym___attribute__] = ACTIONS(563), + [anon_sym_sizeof] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_union] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [aux_sym_preproc_else_token1] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [aux_sym_preproc_if_token1] = ACTIONS(563), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_else] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [aux_sym_preproc_include_token1] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_static] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(565), + [aux_sym_preproc_def_token1] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_inline] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), }, [466] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(1854), - }, - [467] = { - [sym_goto_statement] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(763), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(764), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(764), - [sym_return_statement] = STATE(764), + [sym_continue_statement] = STATE(769), + [sym_preproc_function_def] = STATE(769), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(768), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(769), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(769), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_preproc_include] = STATE(769), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(769), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(764), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(764), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(764), - [sym_preproc_include] = STATE(764), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(764), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(764), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(764), - [sym_do_statement] = STATE(764), - [sym_preproc_def] = STATE(764), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(769), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_preproc_def] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym_preproc_else] = STATE(768), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(769), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_do_statement] = STATE(769), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(763), + [sym_preproc_call] = STATE(769), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(764), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(764), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(764), - [sym_for_statement] = STATE(764), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(764), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(764), - [sym_preproc_if] = STATE(764), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(764), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(764), - [sym_while_statement] = STATE(764), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(1856), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym__empty_declaration] = STATE(769), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(769), + [sym_preproc_if] = STATE(769), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(769), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), + }, + [467] = { + [sym_null] = ACTIONS(571), + [anon_sym_volatile] = ACTIONS(571), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(571), + [aux_sym_preproc_if_token2] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_typedef] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(569), + [anon_sym__Atomic] = ACTIONS(571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(571), + [sym_number_literal] = ACTIONS(569), + [anon_sym_restrict] = ACTIONS(571), + [anon_sym_extern] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_signed] = ACTIONS(571), + [anon_sym_long] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(571), + [aux_sym_preproc_elif_token1] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym___attribute__] = ACTIONS(571), + [anon_sym_sizeof] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_union] = ACTIONS(571), + [anon_sym_unsigned] = ACTIONS(571), + [anon_sym_short] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [aux_sym_preproc_else_token1] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(569), + [sym_preproc_directive] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_preproc_if_token1] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(569), + [sym_true] = ACTIONS(571), + [sym_primitive_type] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [aux_sym_preproc_include_token1] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_register] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [sym_identifier] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(569), + [aux_sym_preproc_def_token1] = ACTIONS(571), + [anon_sym_auto] = ACTIONS(571), + [anon_sym_inline] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), }, [468] = { - [sym_union_specifier] = STATE(765), - [sym_macro_type_specifier] = STATE(765), - [sym_struct_specifier] = STATE(765), - [sym__type_specifier] = STATE(765), - [sym_sized_type_specifier] = STATE(765), - [sym_enum_specifier] = STATE(765), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(183), - [sym_type_qualifier] = STATE(183), - [anon_sym_short] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1858), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), + [aux_sym_string_literal_repeat1] = STATE(771), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(1888), }, [469] = { - [sym_pointer_type_declarator] = STATE(766), - [sym_array_type_declarator] = STATE(766), - [sym_function_type_declarator] = STATE(766), - [sym__type_declarator] = STATE(766), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_function_definition] = STATE(773), + [sym_declaration_list] = STATE(773), + [sym_declaration] = STATE(773), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_attribute_specifier] = STATE(277), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [sym__declaration_specifiers] = STATE(774), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(553), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [470] = { - [sym_do_statement] = STATE(771), - [sym_goto_statement] = STATE(771), - [sym__expression] = STATE(229), + [sym_while_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), + [sym_math_expression] = STATE(229), [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(771), - [sym_switch_statement] = STATE(771), - [sym_for_statement] = STATE(771), - [sym_return_statement] = STATE(771), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(229), [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(771), - [sym_continue_statement] = STATE(771), + [sym_switch_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_conditional_expression] = STATE(229), [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(229), [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(771), - [sym_labeled_statement] = STATE(771), - [sym_expression_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(779), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [471] = { - [sym_do_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym__expression] = STATE(229), + [sym_switch_body] = STATE(781), + [anon_sym_LBRACE] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [sym_while_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), + [sym_math_expression] = STATE(229), [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(229), [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), + [sym_switch_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_conditional_expression] = STATE(229), [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(229), [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(772), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), - }, - [472] = { - [sym_switch_body] = STATE(774), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1868), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(783), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [473] = { - [anon_sym_DASH_DASH] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [anon_sym__Atomic] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(567), - [sym_number_literal] = ACTIONS(567), - [anon_sym_restrict] = ACTIONS(569), - [anon_sym_typedef] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_while] = ACTIONS(569), - [anon_sym_signed] = ACTIONS(569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_volatile] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_extern] = ACTIONS(569), - [anon_sym_sizeof] = ACTIONS(569), - [anon_sym_union] = ACTIONS(569), - [anon_sym_unsigned] = ACTIONS(569), - [anon_sym_short] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(569), - [aux_sym_preproc_elif_token1] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN2] = ACTIONS(567), - [anon_sym_long] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_primitive_type] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [aux_sym_preproc_else_token1] = ACTIONS(569), - [sym_preproc_directive] = ACTIONS(569), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_if] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [aux_sym_preproc_include_token1] = ACTIONS(569), - [anon_sym_auto] = ACTIONS(569), - [anon_sym_inline] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_else] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [anon_sym_struct] = ACTIONS(569), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(569), - [anon_sym_goto] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [aux_sym_preproc_def_token1] = ACTIONS(569), - [anon_sym_register] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), + [sym_null] = ACTIONS(641), + [anon_sym_volatile] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(641), + [aux_sym_preproc_if_token2] = ACTIONS(641), + [anon_sym_const] = ACTIONS(641), + [anon_sym_typedef] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(643), + [anon_sym__Atomic] = ACTIONS(641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(641), + [sym_number_literal] = ACTIONS(643), + [anon_sym_restrict] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(641), + [anon_sym_signed] = ACTIONS(641), + [anon_sym_long] = ACTIONS(641), + [anon_sym_while] = ACTIONS(641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(641), + [aux_sym_preproc_elif_token1] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(641), + [anon_sym_sizeof] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_union] = ACTIONS(641), + [anon_sym_unsigned] = ACTIONS(641), + [anon_sym_short] = ACTIONS(641), + [anon_sym_do] = ACTIONS(641), + [aux_sym_preproc_else_token1] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [sym_preproc_directive] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), + [aux_sym_preproc_if_token1] = ACTIONS(641), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_else] = ACTIONS(641), + [sym_true] = ACTIONS(641), + [sym_primitive_type] = ACTIONS(641), + [anon_sym_for] = ACTIONS(641), + [anon_sym_break] = ACTIONS(641), + [aux_sym_preproc_include_token1] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_static] = ACTIONS(641), + [anon_sym_register] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_if] = ACTIONS(641), + [anon_sym_switch] = ACTIONS(641), + [sym_false] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(641), + [sym_identifier] = ACTIONS(641), + [anon_sym_return] = ACTIONS(641), + [anon_sym_continue] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(643), + [aux_sym_preproc_def_token1] = ACTIONS(641), + [anon_sym_auto] = ACTIONS(641), + [anon_sym_inline] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), }, [474] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [475] = { - [anon_sym_DASH_DASH] = ACTIONS(599), - [sym_identifier] = ACTIONS(601), - [anon_sym__Atomic] = ACTIONS(601), - [aux_sym_preproc_if_token2] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(599), - [sym_number_literal] = ACTIONS(599), - [anon_sym_restrict] = ACTIONS(601), - [anon_sym_typedef] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_while] = ACTIONS(601), - [anon_sym_signed] = ACTIONS(601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_volatile] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(601), - [anon_sym_sizeof] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_unsigned] = ACTIONS(601), - [anon_sym_short] = ACTIONS(601), - [anon_sym_do] = ACTIONS(601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(601), - [aux_sym_preproc_elif_token1] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_long] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_primitive_type] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [aux_sym_preproc_else_token1] = ACTIONS(601), - [sym_preproc_directive] = ACTIONS(601), - [aux_sym_preproc_if_token1] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_static] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_if] = ACTIONS(601), - [anon_sym_switch] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [aux_sym_preproc_include_token1] = ACTIONS(601), - [anon_sym_auto] = ACTIONS(601), - [anon_sym_inline] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_else] = ACTIONS(601), - [sym_null] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(599), - [aux_sym_preproc_def_token1] = ACTIONS(601), - [anon_sym_register] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - }, - [476] = { - [sym_goto_statement] = STATE(778), - [sym_preproc_function_def] = STATE(778), + [sym_while_statement] = STATE(785), + [sym_continue_statement] = STATE(785), + [sym_goto_statement] = STATE(785), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(777), + [sym_math_expression] = STATE(229), [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(778), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(778), - [sym_return_statement] = STATE(778), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(778), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(778), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(778), - [sym_preproc_include] = STATE(778), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(778), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(778), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(778), - [sym_do_statement] = STATE(778), - [sym_preproc_def] = STATE(778), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(785), + [sym_expression_statement] = STATE(785), + [sym_if_statement] = STATE(785), + [sym_do_statement] = STATE(785), + [sym_for_statement] = STATE(785), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(777), + [sym_comma_expression] = STATE(227), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(778), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(778), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(778), - [sym_for_statement] = STATE(778), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(778), [sym_equality_expression] = STATE(229), [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), + [sym_compound_literal_expression] = STATE(229), [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(778), - [sym_preproc_if] = STATE(778), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(778), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(778), - [sym_while_statement] = STATE(778), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(1872), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), - }, - [477] = { - [aux_sym_string_literal_repeat1] = STATE(780), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(1876), - [aux_sym_string_literal_token1] = ACTIONS(1876), - }, - [478] = { - [anon_sym_LPAREN2] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_long] = ACTIONS(611), - [anon_sym__Atomic] = ACTIONS(611), - [sym_primitive_type] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_identifier] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [aux_sym_preproc_else_token1] = ACTIONS(611), - [aux_sym_preproc_if_token2] = ACTIONS(611), - [sym_preproc_directive] = ACTIONS(611), - [aux_sym_preproc_if_token1] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_static] = ACTIONS(611), - [anon_sym_restrict] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_typedef] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_if] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_signed] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [sym_number_literal] = ACTIONS(609), - [anon_sym_return] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(611), - [aux_sym_preproc_include_token1] = ACTIONS(611), - [anon_sym_auto] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_inline] = ACTIONS(611), - [anon_sym_extern] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_sizeof] = ACTIONS(611), - [anon_sym_union] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(609), - [anon_sym_unsigned] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(609), - [sym_null] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_goto] = ACTIONS(611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [aux_sym_preproc_elif_token1] = ACTIONS(611), - [aux_sym_preproc_def_token1] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_register] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), - }, - [479] = { - [sym_union_specifier] = STATE(201), - [sym_macro_type_specifier] = STATE(201), - [sym_declaration_list] = STATE(782), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_function_definition] = STATE(782), - [sym_declaration] = STATE(782), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym__declaration_specifiers] = STATE(783), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(426), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(426), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(1878), - }, - [480] = { - [anon_sym_DASH_DASH] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [aux_sym_preproc_if_token2] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(659), - [sym_number_literal] = ACTIONS(659), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym_typedef] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(659), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(659), - [anon_sym_extern] = ACTIONS(661), - [anon_sym_sizeof] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsigned] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(661), - [aux_sym_preproc_elif_token1] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_LPAREN2] = ACTIONS(659), - [anon_sym_long] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_primitive_type] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [aux_sym_preproc_else_token1] = ACTIONS(661), - [sym_preproc_directive] = ACTIONS(661), - [aux_sym_preproc_if_token1] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_static] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_if] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [aux_sym_preproc_include_token1] = ACTIONS(661), - [anon_sym_auto] = ACTIONS(661), - [anon_sym_inline] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(661), - [anon_sym_goto] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(659), - [aux_sym_preproc_def_token1] = ACTIONS(661), - [anon_sym_register] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - }, - [481] = { - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(1880), + [sym_switch_statement] = STATE(785), + [sym_return_statement] = STATE(785), + [sym_break_statement] = STATE(785), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(785), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [482] = { + [476] = { + [sym_null] = ACTIONS(679), + [anon_sym_volatile] = ACTIONS(679), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_goto] = ACTIONS(679), + [aux_sym_preproc_if_token2] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym__Atomic] = ACTIONS(679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(679), + [sym_number_literal] = ACTIONS(681), + [anon_sym_restrict] = ACTIONS(679), + [anon_sym_extern] = ACTIONS(679), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(679), + [aux_sym_preproc_elif_token1] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(681), + [anon_sym___attribute__] = ACTIONS(679), + [anon_sym_sizeof] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [aux_sym_preproc_else_token1] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [sym_preproc_directive] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + [aux_sym_preproc_if_token1] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(681), + [anon_sym_else] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [aux_sym_preproc_include_token1] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_static] = ACTIONS(679), + [anon_sym_register] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_if] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [sym_identifier] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [aux_sym_preproc_def_token1] = ACTIONS(679), + [anon_sym_auto] = ACTIONS(679), + [anon_sym_inline] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), }, - [483] = { - [sym_goto_statement] = STATE(787), + [477] = { + [sym_continue_statement] = STATE(787), [sym_preproc_function_def] = STATE(787), - [sym_logical_expression] = STATE(229), + [sym_pointer_expression] = STATE(35), [sym_preproc_elif] = STATE(786), - [sym_cast_expression] = STATE(229), + [sym_math_expression] = STATE(229), [sym_declaration] = STATE(787), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(787), + [sym_for_statement] = STATE(787), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(787), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), [sym_switch_statement] = STATE(787), [sym_return_statement] = STATE(787), + [sym_preproc_include] = STATE(787), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(787), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(787), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), [aux_sym_translation_unit_repeat1] = STATE(787), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(787), - [sym_preproc_include] = STATE(787), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(787), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(787), + [sym_while_statement] = STATE(787), + [sym_preproc_def] = STATE(787), + [sym_goto_statement] = STATE(787), + [sym_preproc_else] = STATE(786), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(787), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), [sym_compound_statement] = STATE(787), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), [sym_expression_statement] = STATE(787), [sym_do_statement] = STATE(787), - [sym_preproc_def] = STATE(787), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(786), + [sym_preproc_call] = STATE(787), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(787), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), [sym__empty_declaration] = STATE(787), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(787), - [sym_for_statement] = STATE(787), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(787), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(787), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(787), [sym_preproc_if] = STATE(787), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), [sym_linkage_specification] = STATE(787), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(1884), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, - [484] = { + [478] = { [sym_preproc_params] = STATE(790), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(1888), - }, - [485] = { - [anon_sym_DASH_DASH] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym__Atomic] = ACTIONS(683), - [aux_sym_preproc_if_token2] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(681), - [sym_number_literal] = ACTIONS(681), - [anon_sym_restrict] = ACTIONS(683), - [anon_sym_typedef] = ACTIONS(683), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_signed] = ACTIONS(683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_extern] = ACTIONS(683), - [anon_sym_sizeof] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(683), - [aux_sym_preproc_elif_token1] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_LPAREN2] = ACTIONS(681), - [anon_sym_long] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [aux_sym_preproc_else_token1] = ACTIONS(683), - [sym_preproc_directive] = ACTIONS(683), - [aux_sym_preproc_if_token1] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_static] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_if] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [aux_sym_preproc_include_token1] = ACTIONS(683), - [anon_sym_auto] = ACTIONS(683), - [anon_sym_inline] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(683), - [anon_sym_goto] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [aux_sym_preproc_def_token1] = ACTIONS(683), - [anon_sym_register] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), + [sym_preproc_arg] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(1912), }, - [486] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [479] = { + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_sizeof] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_null] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym__Atomic] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [sym_true] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [sym_number_literal] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), }, - [487] = { - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_long] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [sym_true] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [sym_preproc_directive] = ACTIONS(1894), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1892), - [aux_sym_preproc_include_token1] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_null] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [ts_builtin_sym_end] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1892), + [480] = { + [sym_null] = ACTIONS(706), + [anon_sym_volatile] = ACTIONS(706), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(706), + [aux_sym_preproc_if_token2] = ACTIONS(706), + [anon_sym_const] = ACTIONS(706), + [anon_sym_typedef] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(708), + [anon_sym__Atomic] = ACTIONS(706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(706), + [sym_number_literal] = ACTIONS(708), + [anon_sym_restrict] = ACTIONS(706), + [anon_sym_extern] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(706), + [anon_sym_signed] = ACTIONS(706), + [anon_sym_long] = ACTIONS(706), + [anon_sym_while] = ACTIONS(706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(706), + [aux_sym_preproc_elif_token1] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym___attribute__] = ACTIONS(706), + [anon_sym_sizeof] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsigned] = ACTIONS(706), + [anon_sym_short] = ACTIONS(706), + [anon_sym_do] = ACTIONS(706), + [aux_sym_preproc_else_token1] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(708), + [sym_preproc_directive] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [aux_sym_preproc_if_token1] = ACTIONS(706), + [anon_sym_LPAREN2] = ACTIONS(708), + [anon_sym_else] = ACTIONS(706), + [sym_true] = ACTIONS(706), + [sym_primitive_type] = ACTIONS(706), + [anon_sym_for] = ACTIONS(706), + [anon_sym_break] = ACTIONS(706), + [aux_sym_preproc_include_token1] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_static] = ACTIONS(706), + [anon_sym_register] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [anon_sym_enum] = ACTIONS(706), + [sym_identifier] = ACTIONS(706), + [anon_sym_return] = ACTIONS(706), + [anon_sym_continue] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(708), + [aux_sym_preproc_def_token1] = ACTIONS(706), + [anon_sym_auto] = ACTIONS(706), + [anon_sym_inline] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), }, - [488] = { - [aux_sym_preproc_if_token2] = ACTIONS(1896), + [481] = { + [aux_sym_preproc_if_token2] = ACTIONS(1918), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_preproc_function_def] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_function_definition] = STATE(489), - [sym_char_literal] = STATE(229), - [sym_declaration] = STATE(489), - [sym_goto_statement] = STATE(489), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(489), - [sym_switch_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), + [482] = { + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), + [sym_type_definition] = STATE(482), [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), [sym_parenthesized_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(489), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(482), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(489), - [sym_preproc_ifdef] = STATE(489), - [sym_linkage_specification] = STATE(489), - [sym_continue_statement] = STATE(489), - [sym_compound_statement] = STATE(489), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(489), - [sym_expression_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_LPAREN2] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_long] = ACTIONS(697), - [anon_sym__Atomic] = ACTIONS(700), - [sym_primitive_type] = ACTIONS(703), - [sym_true] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1904), - [aux_sym_preproc_else_token1] = ACTIONS(1907), - [aux_sym_preproc_if_token2] = ACTIONS(1907), - [sym_preproc_directive] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_static] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_typedef] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_switch] = ACTIONS(1924), - [anon_sym_signed] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [sym_number_literal] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1930), - [sym_false] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), - [aux_sym_preproc_include_token1] = ACTIONS(1939), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(769), - [anon_sym_union] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_unsigned] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_short] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_null] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_goto] = ACTIONS(1951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1954), - [aux_sym_preproc_elif_token1] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(733), - [anon_sym_register] = ACTIONS(724), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(1960), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1923), + [aux_sym_preproc_if_token2] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(726), + [anon_sym_typedef] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym__Atomic] = ACTIONS(726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_signed] = ACTIONS(723), + [anon_sym_long] = ACTIONS(723), + [anon_sym_while] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [aux_sym_preproc_elif_token1] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym___attribute__] = ACTIONS(827), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(717), + [anon_sym_unsigned] = ACTIONS(723), + [anon_sym_short] = ACTIONS(723), + [anon_sym_do] = ACTIONS(1946), + [aux_sym_preproc_else_token1] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(746), + [sym_preproc_directive] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(752), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(758), + [sym_true] = ACTIONS(1920), + [sym_primitive_type] = ACTIONS(767), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1958), + [aux_sym_preproc_include_token1] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_static] = ACTIONS(785), + [anon_sym_register] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_switch] = ACTIONS(1967), + [sym_false] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(800), + [sym_identifier] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1979), + [aux_sym_preproc_def_token1] = ACTIONS(1982), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_inline] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(803), }, - [490] = { - [anon_sym_DASH_DASH] = ACTIONS(913), - [sym_identifier] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [aux_sym_preproc_if_token2] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(913), - [sym_number_literal] = ACTIONS(913), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_while] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(915), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_sizeof] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(915), - [aux_sym_preproc_elif_token1] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_long] = ACTIONS(915), - [sym_true] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [aux_sym_preproc_else_token1] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [aux_sym_preproc_if_token1] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [aux_sym_preproc_include_token1] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_else] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), + [483] = { + [sym_null] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(949), + [aux_sym_preproc_if_token2] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym__Atomic] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [aux_sym_preproc_elif_token1] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_sizeof] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [aux_sym_preproc_else_token1] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(947), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_if] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [sym_identifier] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_inline] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), }, - [491] = { - [anon_sym_LPAREN2] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_long] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_identifier] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [aux_sym_preproc_else_token1] = ACTIONS(939), - [aux_sym_preproc_if_token2] = ACTIONS(939), - [sym_preproc_directive] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_static] = ACTIONS(939), - [anon_sym_restrict] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_if] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_signed] = ACTIONS(939), - [anon_sym_enum] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [sym_number_literal] = ACTIONS(937), - [anon_sym_return] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(939), - [anon_sym_auto] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(939), - [anon_sym_inline] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_sizeof] = ACTIONS(939), - [anon_sym_union] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_short] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym_null] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_goto] = ACTIONS(939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(937), - [aux_sym_preproc_elif_token1] = ACTIONS(939), - [aux_sym_preproc_def_token1] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_register] = ACTIONS(939), + [484] = { + [sym_compound_statement] = STATE(793), + [aux_sym_declaration_repeat1] = STATE(794), + [sym_parameter_list] = STATE(381), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(1985), }, - [492] = { - [sym_compound_statement] = STATE(794), - [aux_sym_declaration_repeat1] = STATE(795), - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [485] = { + [aux_sym_declaration_repeat1] = STATE(794), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1985), }, - [493] = { - [aux_sym_declaration_repeat1] = STATE(795), + [486] = { [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1987), }, - [494] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(797), - [anon_sym_LPAREN2] = ACTIONS(941), + [487] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(797), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [495] = { - [sym_type_qualifier] = STATE(798), - [sym_pointer_type_declarator] = STATE(498), - [sym_array_type_declarator] = STATE(498), - [sym_function_type_declarator] = STATE(498), - [aux_sym_type_definition_repeat1] = STATE(798), - [sym__type_declarator] = STATE(498), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [488] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, - [496] = { - [sym_parameter_list] = STATE(502), - [anon_sym_LPAREN2] = ACTIONS(941), + [489] = { + [aux_sym_concatenated_string_repeat1] = STATE(798), + [sym_string_literal] = STATE(798), + [anon_sym_PERCENT] = ACTIONS(712), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), + }, + [490] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, - [497] = { - [sym_type_qualifier] = STATE(662), - [sym_pointer_type_declarator] = STATE(800), - [sym_array_type_declarator] = STATE(800), - [sym_function_type_declarator] = STATE(800), - [aux_sym_type_definition_repeat1] = STATE(662), - [sym__type_declarator] = STATE(800), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [491] = { + [sym_concatenated_string] = STATE(799), + [sym_pointer_expression] = STATE(799), + [sym_logical_expression] = STATE(799), + [sym_math_expression] = STATE(799), + [sym_cast_expression] = STATE(799), + [sym_field_expression] = STATE(799), + [sym_conditional_expression] = STATE(799), + [sym_assignment_expression] = STATE(799), + [sym_relational_expression] = STATE(799), + [sym_shift_expression] = STATE(799), + [sym_subscript_expression] = STATE(799), + [sym_call_expression] = STATE(799), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(799), + [sym_bitwise_expression] = STATE(799), + [sym_equality_expression] = STATE(799), + [sym_sizeof_expression] = STATE(799), + [sym_compound_literal_expression] = STATE(799), + [sym_parenthesized_expression] = STATE(799), + [sym_char_literal] = STATE(799), + [sym_null] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1995), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, - [498] = { - [sym_parameter_list] = STATE(502), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), + [492] = { + [sym_concatenated_string] = STATE(800), + [sym_pointer_expression] = STATE(800), + [sym_logical_expression] = STATE(800), + [sym_math_expression] = STATE(800), + [sym_cast_expression] = STATE(800), + [sym_field_expression] = STATE(800), + [sym_conditional_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_relational_expression] = STATE(800), + [sym_shift_expression] = STATE(800), + [sym_subscript_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(800), + [sym_bitwise_expression] = STATE(800), + [sym_equality_expression] = STATE(800), + [sym_sizeof_expression] = STATE(800), + [sym_compound_literal_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_char_literal] = STATE(800), + [sym_null] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1999), + [sym_identifier] = ACTIONS(1999), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, - [499] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(803), + [493] = { + [sym_concatenated_string] = STATE(801), + [sym_pointer_expression] = STATE(801), + [sym_logical_expression] = STATE(801), + [sym_math_expression] = STATE(801), + [sym_cast_expression] = STATE(801), + [sym_field_expression] = STATE(801), + [sym_conditional_expression] = STATE(801), + [sym_assignment_expression] = STATE(801), + [sym_relational_expression] = STATE(801), + [sym_shift_expression] = STATE(801), + [sym_subscript_expression] = STATE(801), + [sym_call_expression] = STATE(801), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(801), + [sym_bitwise_expression] = STATE(801), + [sym_equality_expression] = STATE(801), + [sym_sizeof_expression] = STATE(801), + [sym_compound_literal_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_char_literal] = STATE(801), + [sym_null] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2003), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [494] = { + [sym_concatenated_string] = STATE(802), + [sym_pointer_expression] = STATE(802), + [sym_logical_expression] = STATE(802), + [sym_math_expression] = STATE(802), + [sym_cast_expression] = STATE(802), + [sym_field_expression] = STATE(802), + [sym_conditional_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_relational_expression] = STATE(802), + [sym_shift_expression] = STATE(802), + [sym_subscript_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(802), + [sym_bitwise_expression] = STATE(802), + [sym_equality_expression] = STATE(802), + [sym_sizeof_expression] = STATE(802), + [sym_compound_literal_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_char_literal] = STATE(802), + [sym_null] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2009), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2007), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [495] = { + [sym_concatenated_string] = STATE(803), + [sym_pointer_expression] = STATE(803), [sym_logical_expression] = STATE(803), - [sym_bitwise_expression] = STATE(803), + [sym_math_expression] = STATE(803), [sym_cast_expression] = STATE(803), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(803), - [sym_char_literal] = STATE(803), + [sym_field_expression] = STATE(803), + [sym_conditional_expression] = STATE(803), [sym_assignment_expression] = STATE(803), - [sym_type_qualifier] = STATE(804), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(803), - [sym_call_expression] = STATE(357), + [sym_relational_expression] = STATE(803), [sym_shift_expression] = STATE(803), - [aux_sym_type_definition_repeat1] = STATE(804), - [sym_conditional_expression] = STATE(803), + [sym_subscript_expression] = STATE(803), + [sym_call_expression] = STATE(803), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(803), + [sym_bitwise_expression] = STATE(803), [sym_equality_expression] = STATE(803), - [sym_relational_expression] = STATE(803), [sym_sizeof_expression] = STATE(803), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(803), [sym_parenthesized_expression] = STATE(803), - [sym_concatenated_string] = STATE(803), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1973), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(1977), + [sym_char_literal] = STATE(803), + [sym_null] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2013), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, - [500] = { - [sym_pointer_type_declarator] = STATE(805), - [sym_array_type_declarator] = STATE(805), - [sym_function_type_declarator] = STATE(805), - [sym__type_declarator] = STATE(805), - [anon_sym_LPAREN2] = ACTIONS(495), + [496] = { + [sym_concatenated_string] = STATE(804), + [sym_pointer_expression] = STATE(804), + [sym_logical_expression] = STATE(804), + [sym_math_expression] = STATE(804), + [sym_cast_expression] = STATE(804), + [sym_field_expression] = STATE(804), + [sym_conditional_expression] = STATE(804), + [sym_assignment_expression] = STATE(804), + [sym_relational_expression] = STATE(804), + [sym_shift_expression] = STATE(804), + [sym_subscript_expression] = STATE(804), + [sym_call_expression] = STATE(804), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(804), + [sym_bitwise_expression] = STATE(804), + [sym_equality_expression] = STATE(804), + [sym_sizeof_expression] = STATE(804), + [sym_compound_literal_expression] = STATE(804), + [sym_parenthesized_expression] = STATE(804), + [sym_char_literal] = STATE(804), + [sym_null] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [497] = { + [sym_concatenated_string] = STATE(805), + [sym_pointer_expression] = STATE(805), + [sym_logical_expression] = STATE(805), + [sym_math_expression] = STATE(805), + [sym_cast_expression] = STATE(805), + [sym_field_expression] = STATE(805), + [sym_conditional_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_relational_expression] = STATE(805), + [sym_shift_expression] = STATE(805), + [sym_subscript_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(805), + [sym_bitwise_expression] = STATE(805), + [sym_equality_expression] = STATE(805), + [sym_sizeof_expression] = STATE(805), + [sym_compound_literal_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_char_literal] = STATE(805), + [sym_null] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2021), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [498] = { + [sym_concatenated_string] = STATE(806), + [sym_pointer_expression] = STATE(806), + [sym_logical_expression] = STATE(806), + [sym_math_expression] = STATE(806), + [sym_cast_expression] = STATE(806), + [sym_field_expression] = STATE(806), + [sym_conditional_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_relational_expression] = STATE(806), + [sym_shift_expression] = STATE(806), + [sym_subscript_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(806), + [sym_bitwise_expression] = STATE(806), + [sym_equality_expression] = STATE(806), + [sym_sizeof_expression] = STATE(806), + [sym_compound_literal_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_char_literal] = STATE(806), + [sym_null] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2025), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [499] = { + [sym_concatenated_string] = STATE(807), + [sym_pointer_expression] = STATE(807), + [sym_logical_expression] = STATE(807), + [sym_math_expression] = STATE(807), + [sym_cast_expression] = STATE(807), + [sym_field_expression] = STATE(807), + [sym_conditional_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_relational_expression] = STATE(807), + [sym_shift_expression] = STATE(807), + [sym_subscript_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(807), + [sym_bitwise_expression] = STATE(807), + [sym_equality_expression] = STATE(807), + [sym_sizeof_expression] = STATE(807), + [sym_compound_literal_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_char_literal] = STATE(807), + [sym_null] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(2029), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2027), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [500] = { + [sym_concatenated_string] = STATE(808), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(808), + [sym_math_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_relational_expression] = STATE(808), + [sym_shift_expression] = STATE(808), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(808), + [sym_bitwise_expression] = STATE(808), + [sym_equality_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(808), + [sym_char_literal] = STATE(808), + [sym_null] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2033), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2031), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [501] = { - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_default] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1981), - [anon_sym__Atomic] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1979), - [sym_number_literal] = ACTIONS(1979), - [anon_sym_restrict] = ACTIONS(1981), - [anon_sym_typedef] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_signed] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_volatile] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_sizeof] = ACTIONS(1981), - [anon_sym_union] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_LPAREN2] = ACTIONS(1979), - [anon_sym_long] = ACTIONS(1981), - [sym_true] = ACTIONS(1981), - [sym_primitive_type] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [sym_preproc_directive] = ACTIONS(1981), - [aux_sym_preproc_if_token1] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [aux_sym_preproc_include_token1] = ACTIONS(1981), - [anon_sym_auto] = ACTIONS(1981), - [anon_sym_inline] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_case] = ACTIONS(1981), - [sym_null] = ACTIONS(1981), - [anon_sym_struct] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_goto] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [aux_sym_preproc_def_token1] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [502] = { - [anon_sym_LPAREN2] = ACTIONS(1983), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [503] = { - [aux_sym_type_definition_repeat2] = STATE(806), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(2035), }, [504] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [505] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1991), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1993), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [506] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2003), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [507] = { - [sym_string_literal] = STATE(507), - [aux_sym_concatenated_string_repeat1] = STATE(507), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [508] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), - }, - [509] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), - [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [sym_argument_list] = STATE(154), [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), [anon_sym_EQ_EQ] = ACTIONS(1500), [anon_sym_GT_EQ] = ACTIONS(1500), [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(490), [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [509] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [510] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [511] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [512] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [513] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [514] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [515] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1993), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(825), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(825), + [sym_math_expression] = STATE(825), + [sym_cast_expression] = STATE(825), + [aux_sym_initializer_pair_repeat1] = STATE(822), + [sym_field_expression] = STATE(817), + [sym_subscript_designator] = STATE(822), + [sym_field_designator] = STATE(822), + [sym_conditional_expression] = STATE(825), + [sym_assignment_expression] = STATE(825), + [sym_relational_expression] = STATE(825), + [sym_shift_expression] = STATE(825), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(823), + [sym_initializer_pair] = STATE(823), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(825), + [sym_bitwise_expression] = STATE(825), + [sym_equality_expression] = STATE(825), + [sym_sizeof_expression] = STATE(825), + [sym_compound_literal_expression] = STATE(825), + [sym_parenthesized_expression] = STATE(825), + [sym_char_literal] = STATE(825), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_null] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(2047), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [sym_false] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2061), + [sym_true] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2065), }, [516] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2069), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2069), + [anon_sym_AMP_EQ] = ACTIONS(2069), + [anon_sym_DASH_EQ] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2069), + [anon_sym_DASH_GT] = ACTIONS(2069), + [anon_sym_EQ] = ACTIONS(2067), + [anon_sym_LPAREN2] = ACTIONS(2069), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_COLON] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_PLUS_EQ] = ACTIONS(2069), + [anon_sym_STAR_EQ] = ACTIONS(2069), + [anon_sym_LT_LT_EQ] = ACTIONS(2069), + [anon_sym_QMARK] = ACTIONS(2069), + [anon_sym_EQ_EQ] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2069), + [anon_sym_PIPE_PIPE] = ACTIONS(2069), + [anon_sym_CARET_EQ] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2069), + [anon_sym_SLASH_EQ] = ACTIONS(2069), + [anon_sym_GT_GT_EQ] = ACTIONS(2069), + [anon_sym_BANG_EQ] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PIPE_EQ] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), }, [517] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2073), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2073), + [anon_sym_AMP_EQ] = ACTIONS(2073), + [anon_sym_DASH_EQ] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_LT_EQ] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2071), + [anon_sym_SLASH] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_PLUS_EQ] = ACTIONS(2073), + [anon_sym_STAR_EQ] = ACTIONS(2073), + [anon_sym_LT_LT_EQ] = ACTIONS(2073), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_CARET_EQ] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(2073), + [anon_sym_GT_GT_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(2071), + [anon_sym_LT_LT] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_PIPE_EQ] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(326), }, [518] = { - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1009), - [sym_true] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1009), - [anon_sym_case] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [aux_sym_preproc_def_token1] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1300), }, [519] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_abstract_pointer_declarator] = STATE(826), + [sym_abstract_array_declarator] = STATE(826), + [sym_abstract_function_declarator] = STATE(826), + [sym__abstract_declarator] = STATE(826), + [sym_type_qualifier] = STATE(535), + [aux_sym_type_definition_repeat1] = STATE(535), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [520] = { - [sym__expression] = STATE(810), - [sym_logical_expression] = STATE(810), - [sym_bitwise_expression] = STATE(810), - [sym_cast_expression] = STATE(810), - [sym_declaration] = STATE(809), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(810), - [sym_char_literal] = STATE(810), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(810), - [sym_equality_expression] = STATE(810), - [sym_relational_expression] = STATE(810), - [sym_sizeof_expression] = STATE(810), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(810), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(810), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(810), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(810), - [sym_math_expression] = STATE(810), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(2009), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(1300), }, [521] = { - [sym_do_statement] = STATE(811), - [sym_goto_statement] = STATE(811), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(811), - [sym_switch_statement] = STATE(811), - [sym_for_statement] = STATE(811), - [sym_return_statement] = STATE(811), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(811), - [sym_continue_statement] = STATE(811), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(811), - [sym_labeled_statement] = STATE(811), - [sym_expression_statement] = STATE(811), - [sym_while_statement] = STATE(811), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_abstract_pointer_declarator] = STATE(827), + [sym_abstract_array_declarator] = STATE(827), + [sym_abstract_function_declarator] = STATE(827), + [sym__abstract_declarator] = STATE(827), + [sym_type_qualifier] = STATE(535), + [aux_sym_type_definition_repeat1] = STATE(535), + [sym_parameter_list] = STATE(261), + [anon_sym_const] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(526), + [anon_sym_volatile] = ACTIONS(524), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(524), + [anon_sym__Atomic] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(532), }, [522] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_parameter_list_repeat1] = STATE(830), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2081), + [sym_comment] = ACTIONS(3), }, [523] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LPAREN2] = ACTIONS(2083), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_COLON] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym___attribute__] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), }, [524] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(2015), + [aux_sym__declaration_specifiers_repeat1] = STATE(831), + [sym_attribute_specifier] = STATE(831), + [sym_type_qualifier] = STATE(831), + [sym_storage_class_specifier] = STATE(831), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(338), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(336), }, [525] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [aux_sym_sized_type_specifier_repeat1] = STATE(832), + [anon_sym_unsigned] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_static] = ACTIONS(275), + [anon_sym_restrict] = ACTIONS(275), + [anon_sym_register] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), + [anon_sym_short] = ACTIONS(2085), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(2085), + [sym_identifier] = ACTIONS(279), + [anon_sym_long] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym__Atomic] = ACTIONS(275), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_auto] = ACTIONS(275), + [sym_primitive_type] = ACTIONS(282), + [anon_sym_inline] = ACTIONS(275), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), }, [526] = { - [anon_sym_LPAREN2] = ACTIONS(2019), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LPAREN2] = ACTIONS(955), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1300), }, [527] = { - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_default] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2023), - [anon_sym__Atomic] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2021), - [sym_number_literal] = ACTIONS(2021), - [anon_sym_restrict] = ACTIONS(2023), - [anon_sym_typedef] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_signed] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_sizeof] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_unsigned] = ACTIONS(2023), - [anon_sym_short] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_long] = ACTIONS(2023), - [sym_true] = ACTIONS(2023), - [sym_primitive_type] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [sym_preproc_directive] = ACTIONS(2023), - [aux_sym_preproc_if_token1] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_switch] = ACTIONS(2023), - [sym_false] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [aux_sym_preproc_include_token1] = ACTIONS(2023), - [anon_sym_auto] = ACTIONS(2023), - [anon_sym_inline] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_case] = ACTIONS(2023), - [sym_null] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [aux_sym_preproc_def_token1] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), + [sym_struct_specifier] = STATE(834), + [sym_macro_type_specifier] = STATE(834), + [sym_attribute_specifier] = STATE(137), + [sym_type_qualifier] = STATE(137), + [sym_union_specifier] = STATE(834), + [sym__type_specifier] = STATE(834), + [sym_sized_type_specifier] = STATE(834), + [sym_enum_specifier] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(137), + [sym_storage_class_specifier] = STATE(137), + [aux_sym_sized_type_specifier_repeat1] = STATE(525), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(2089), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [528] = { - [sym_parenthesized_expression] = STATE(816), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_function_declarator] = STATE(838), + [sym__abstract_declarator] = STATE(837), + [sym_pointer_declarator] = STATE(838), + [sym_parameter_list] = STATE(261), + [sym__declarator] = STATE(838), + [sym_abstract_array_declarator] = STATE(837), + [sym_abstract_function_declarator] = STATE(837), + [sym_array_declarator] = STATE(838), + [sym_abstract_pointer_declarator] = STATE(837), + [sym_identifier] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2093), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(532), }, [529] = { - [sym_parenthesized_expression] = STATE(817), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [530] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(818), - [sym_logical_expression] = STATE(818), - [sym_bitwise_expression] = STATE(818), - [sym_cast_expression] = STATE(818), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(818), - [sym_char_literal] = STATE(818), - [sym_assignment_expression] = STATE(818), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(818), - [sym_math_expression] = STATE(818), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(818), - [sym_equality_expression] = STATE(818), - [sym_relational_expression] = STATE(818), - [sym_sizeof_expression] = STATE(818), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(818), - [sym_concatenated_string] = STATE(818), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2025), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(2101), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), }, [531] = { - [sym_do_statement] = STATE(820), - [sym_goto_statement] = STATE(820), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(820), - [sym_switch_statement] = STATE(820), - [sym_for_statement] = STATE(820), - [sym_return_statement] = STATE(820), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(820), - [sym_case_statement] = STATE(820), - [sym_break_statement] = STATE(820), - [sym_continue_statement] = STATE(820), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(820), - [sym_labeled_statement] = STATE(820), - [sym_expression_statement] = STATE(820), - [sym_while_statement] = STATE(820), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(842), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(842), + [sym_math_expression] = STATE(842), + [sym_cast_expression] = STATE(842), + [sym_type_qualifier] = STATE(841), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_conditional_expression] = STATE(842), + [sym_assignment_expression] = STATE(842), + [sym_relational_expression] = STATE(842), + [sym_shift_expression] = STATE(842), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(842), + [sym_bitwise_expression] = STATE(842), + [sym_equality_expression] = STATE(842), + [sym_sizeof_expression] = STATE(842), + [sym_compound_literal_expression] = STATE(842), + [sym_parenthesized_expression] = STATE(842), + [sym_char_literal] = STATE(842), + [sym_null] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2105), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [532] = { - [anon_sym_LPAREN2] = ACTIONS(2031), - [anon_sym_COLON] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2033), - [anon_sym__Atomic] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_auto] = ACTIONS(2033), - [anon_sym_volatile] = ACTIONS(2033), - [anon_sym_inline] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_restrict] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [533] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(821), - [sym_logical_expression] = STATE(821), - [sym_bitwise_expression] = STATE(821), - [sym_cast_expression] = STATE(821), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(821), - [sym_char_literal] = STATE(821), - [sym_assignment_expression] = STATE(821), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(821), - [sym_math_expression] = STATE(821), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(821), - [sym_equality_expression] = STATE(821), - [sym_relational_expression] = STATE(821), - [sym_sizeof_expression] = STATE(821), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(821), - [sym_concatenated_string] = STATE(821), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(1732), + [sym_concatenated_string] = STATE(842), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(842), + [sym_math_expression] = STATE(842), + [sym_cast_expression] = STATE(842), + [sym_type_qualifier] = STATE(843), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(843), + [sym_conditional_expression] = STATE(842), + [sym_assignment_expression] = STATE(842), + [sym_relational_expression] = STATE(842), + [sym_shift_expression] = STATE(842), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(842), + [sym_bitwise_expression] = STATE(842), + [sym_equality_expression] = STATE(842), + [sym_sizeof_expression] = STATE(842), + [sym_compound_literal_expression] = STATE(842), + [sym_parenthesized_expression] = STATE(842), + [sym_char_literal] = STATE(842), + [sym_null] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2105), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [534] = { - [sym_enumerator] = STATE(823), - [sym_identifier] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(2109), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), }, [535] = { - [aux_sym_enumerator_list_repeat1] = STATE(825), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2039), + [sym_type_qualifier] = STATE(535), + [aux_sym_type_definition_repeat1] = STATE(535), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(2111), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(2111), + [anon_sym__Atomic] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), }, [536] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(1015), + [aux_sym_concatenated_string_repeat1] = STATE(536), + [sym_string_literal] = STATE(536), + [anon_sym_PERCENT] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [537] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_type_definition_repeat2] = STATE(845), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2116), }, [538] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2043), + [sym_array_type_declarator] = STATE(846), + [sym_type_qualifier] = STATE(664), + [sym_pointer_type_declarator] = STATE(846), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_function_type_declarator] = STATE(846), + [sym__type_declarator] = STATE(846), + [sym_identifier] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(541), }, [539] = { + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2118), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2118), }, [540] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(829), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_array_type_declarator] = STATE(539), + [sym_type_qualifier] = STATE(847), + [sym_pointer_type_declarator] = STATE(539), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_function_type_declarator] = STATE(539), + [sym__type_declarator] = STATE(539), + [sym_identifier] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1306), }, [541] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [sym_parameter_list] = STATE(546), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1308), }, [542] = { - [sym_string_literal] = STATE(830), - [aux_sym_concatenated_string_repeat1] = STATE(830), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [anon_sym_case] = ACTIONS(2122), + [sym_null] = ACTIONS(2122), + [anon_sym_volatile] = ACTIONS(2122), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2122), + [anon_sym__Atomic] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), + [sym_number_literal] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2122), + [anon_sym_long] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsigned] = ACTIONS(2122), + [anon_sym_short] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2122), + [anon_sym_LPAREN2] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [sym_true] = ACTIONS(2122), + [sym_primitive_type] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [anon_sym_auto] = ACTIONS(2122), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), }, [543] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(831), - [sym_logical_expression] = STATE(831), - [sym_bitwise_expression] = STATE(831), - [sym_cast_expression] = STATE(831), - [sym_field_expression] = STATE(831), - [sym_compound_literal_expression] = STATE(831), - [sym_char_literal] = STATE(831), - [sym_assignment_expression] = STATE(831), - [sym_pointer_expression] = STATE(831), - [sym_shift_expression] = STATE(831), - [sym_math_expression] = STATE(831), - [sym_call_expression] = STATE(831), - [sym_conditional_expression] = STATE(831), - [sym_equality_expression] = STATE(831), - [sym_relational_expression] = STATE(831), - [sym_sizeof_expression] = STATE(831), - [sym_subscript_expression] = STATE(831), - [sym_parenthesized_expression] = STATE(831), - [sym_concatenated_string] = STATE(831), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2053), - [sym_true] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2055), + [sym_array_type_declarator] = STATE(849), + [sym_pointer_type_declarator] = STATE(849), + [sym_function_type_declarator] = STATE(849), + [sym__type_declarator] = STATE(849), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(207), }, [544] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(832), - [sym_logical_expression] = STATE(832), - [sym_bitwise_expression] = STATE(832), - [sym_cast_expression] = STATE(832), - [sym_field_expression] = STATE(832), - [sym_compound_literal_expression] = STATE(832), - [sym_char_literal] = STATE(832), - [sym_assignment_expression] = STATE(832), - [sym_pointer_expression] = STATE(832), - [sym_shift_expression] = STATE(832), - [sym_math_expression] = STATE(832), - [sym_call_expression] = STATE(832), - [sym_conditional_expression] = STATE(832), - [sym_equality_expression] = STATE(832), - [sym_relational_expression] = STATE(832), - [sym_sizeof_expression] = STATE(832), - [sym_subscript_expression] = STATE(832), - [sym_parenthesized_expression] = STATE(832), - [sym_concatenated_string] = STATE(832), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2057), - [sym_true] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(853), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(853), + [sym_math_expression] = STATE(853), + [sym_cast_expression] = STATE(853), + [sym_type_qualifier] = STATE(852), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(852), + [sym_conditional_expression] = STATE(853), + [sym_assignment_expression] = STATE(853), + [sym_relational_expression] = STATE(853), + [sym_shift_expression] = STATE(853), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(853), + [sym_bitwise_expression] = STATE(853), + [sym_equality_expression] = STATE(853), + [sym_sizeof_expression] = STATE(853), + [sym_compound_literal_expression] = STATE(853), + [sym_parenthesized_expression] = STATE(853), + [sym_char_literal] = STATE(853), + [sym_null] = ACTIONS(2126), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2128), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [545] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(833), - [sym_logical_expression] = STATE(833), - [sym_bitwise_expression] = STATE(833), - [sym_cast_expression] = STATE(833), - [sym_field_expression] = STATE(833), - [sym_compound_literal_expression] = STATE(833), - [sym_char_literal] = STATE(833), - [sym_assignment_expression] = STATE(833), - [sym_pointer_expression] = STATE(833), - [sym_shift_expression] = STATE(833), - [sym_math_expression] = STATE(833), - [sym_call_expression] = STATE(833), - [sym_conditional_expression] = STATE(833), - [sym_equality_expression] = STATE(833), - [sym_relational_expression] = STATE(833), - [sym_sizeof_expression] = STATE(833), - [sym_subscript_expression] = STATE(833), - [sym_parenthesized_expression] = STATE(833), - [sym_concatenated_string] = STATE(833), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2061), - [sym_true] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2061), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2063), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(2116), }, [546] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(834), - [sym_logical_expression] = STATE(834), - [sym_bitwise_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_pointer_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_call_expression] = STATE(834), - [sym_conditional_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_subscript_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(834), - [sym_concatenated_string] = STATE(834), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2065), - [sym_true] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2065), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2134), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(2134), }, [547] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(835), - [sym_logical_expression] = STATE(835), - [sym_bitwise_expression] = STATE(835), - [sym_cast_expression] = STATE(835), - [sym_field_expression] = STATE(835), - [sym_compound_literal_expression] = STATE(835), - [sym_char_literal] = STATE(835), - [sym_assignment_expression] = STATE(835), - [sym_pointer_expression] = STATE(835), - [sym_shift_expression] = STATE(835), - [sym_math_expression] = STATE(835), - [sym_call_expression] = STATE(835), - [sym_conditional_expression] = STATE(835), - [sym_equality_expression] = STATE(835), - [sym_relational_expression] = STATE(835), - [sym_sizeof_expression] = STATE(835), - [sym_subscript_expression] = STATE(835), - [sym_parenthesized_expression] = STATE(835), - [sym_concatenated_string] = STATE(835), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2071), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(856), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(856), + [sym_math_expression] = STATE(856), + [sym_cast_expression] = STATE(856), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(856), + [sym_assignment_expression] = STATE(856), + [sym_relational_expression] = STATE(856), + [sym_shift_expression] = STATE(856), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(856), + [sym_bitwise_expression] = STATE(856), + [sym_equality_expression] = STATE(856), + [sym_sizeof_expression] = STATE(856), + [sym_compound_literal_expression] = STATE(856), + [sym_parenthesized_expression] = STATE(856), + [sym_char_literal] = STATE(856), + [sym_null] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2138), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2136), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [548] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(836), - [sym_logical_expression] = STATE(836), - [sym_bitwise_expression] = STATE(836), - [sym_cast_expression] = STATE(836), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(836), - [sym_char_literal] = STATE(836), - [sym_assignment_expression] = STATE(836), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(836), - [sym_math_expression] = STATE(836), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(836), - [sym_equality_expression] = STATE(836), - [sym_relational_expression] = STATE(836), - [sym_sizeof_expression] = STATE(836), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(836), - [sym_concatenated_string] = STATE(836), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2075), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [549] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(837), - [sym_logical_expression] = STATE(837), - [sym_bitwise_expression] = STATE(837), - [sym_cast_expression] = STATE(837), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(837), - [sym_char_literal] = STATE(837), - [sym_assignment_expression] = STATE(837), - [sym_pointer_expression] = STATE(837), - [sym_shift_expression] = STATE(837), - [sym_math_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_conditional_expression] = STATE(837), - [sym_equality_expression] = STATE(837), - [sym_relational_expression] = STATE(837), - [sym_sizeof_expression] = STATE(837), - [sym_subscript_expression] = STATE(837), - [sym_parenthesized_expression] = STATE(837), - [sym_concatenated_string] = STATE(837), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2079), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(549), + [anon_sym_unsigned] = ACTIONS(2144), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_short] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(702), + [anon_sym_restrict] = ACTIONS(702), + [anon_sym_register] = ACTIONS(702), + [anon_sym_extern] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(2144), + [anon_sym_long] = ACTIONS(2144), + [sym_identifier] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym__Atomic] = ACTIONS(702), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_auto] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(702), + [anon_sym___attribute__] = ACTIONS(702), }, [550] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(838), - [sym_logical_expression] = STATE(838), - [sym_bitwise_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym_field_expression] = STATE(838), - [sym_compound_literal_expression] = STATE(838), - [sym_char_literal] = STATE(838), - [sym_assignment_expression] = STATE(838), - [sym_pointer_expression] = STATE(838), - [sym_shift_expression] = STATE(838), - [sym_math_expression] = STATE(838), - [sym_call_expression] = STATE(838), - [sym_conditional_expression] = STATE(838), - [sym_equality_expression] = STATE(838), - [sym_relational_expression] = STATE(838), - [sym_sizeof_expression] = STATE(838), - [sym_subscript_expression] = STATE(838), - [sym_parenthesized_expression] = STATE(838), - [sym_concatenated_string] = STATE(838), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2083), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(858), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(858), + [sym_math_expression] = STATE(858), + [sym_cast_expression] = STATE(858), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(858), + [sym_assignment_expression] = STATE(858), + [sym_relational_expression] = STATE(858), + [sym_shift_expression] = STATE(858), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(858), + [sym_bitwise_expression] = STATE(858), + [sym_equality_expression] = STATE(858), + [sym_sizeof_expression] = STATE(858), + [sym_compound_literal_expression] = STATE(858), + [sym_parenthesized_expression] = STATE(858), + [sym_char_literal] = STATE(858), + [sym_null] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(2149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2147), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(2142), + [sym_true] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [551] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(207), + [sym_function_declarator] = STATE(859), + [sym__declarator] = STATE(859), + [sym_type_qualifier] = STATE(860), + [sym_pointer_declarator] = STATE(859), + [sym_array_declarator] = STATE(859), + [aux_sym_type_definition_repeat1] = STATE(860), + [sym_identifier] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1329), }, [552] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(839), - [sym_logical_expression] = STATE(839), - [sym_bitwise_expression] = STATE(839), - [sym_cast_expression] = STATE(839), - [sym_field_expression] = STATE(839), - [sym_compound_literal_expression] = STATE(839), - [sym_char_literal] = STATE(839), - [sym_assignment_expression] = STATE(839), - [sym_pointer_expression] = STATE(839), - [sym_shift_expression] = STATE(839), - [sym_math_expression] = STATE(839), - [sym_call_expression] = STATE(839), - [sym_conditional_expression] = STATE(839), - [sym_equality_expression] = STATE(839), - [sym_relational_expression] = STATE(839), - [sym_sizeof_expression] = STATE(839), - [sym_subscript_expression] = STATE(839), - [sym_parenthesized_expression] = STATE(839), - [sym_concatenated_string] = STATE(839), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2087), + [aux_sym_declaration_repeat1] = STATE(380), + [sym_parameter_list] = STATE(861), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(959), }, [553] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(840), - [sym_logical_expression] = STATE(840), - [sym_bitwise_expression] = STATE(840), - [sym_cast_expression] = STATE(840), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(840), - [sym_char_literal] = STATE(840), - [sym_assignment_expression] = STATE(840), - [sym_pointer_expression] = STATE(840), - [sym_shift_expression] = STATE(840), - [sym_math_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_conditional_expression] = STATE(840), - [sym_equality_expression] = STATE(840), - [sym_relational_expression] = STATE(840), - [sym_sizeof_expression] = STATE(840), - [sym_subscript_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(840), - [sym_concatenated_string] = STATE(840), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(2091), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym__declaration_specifiers_repeat1] = STATE(862), + [sym_attribute_specifier] = STATE(862), + [sym_type_qualifier] = STATE(862), + [sym_storage_class_specifier] = STATE(862), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [554] = { - [sym_string_literal] = STATE(554), - [aux_sym_concatenated_string_repeat1] = STATE(554), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [aux_sym__declaration_specifiers_repeat1] = STATE(863), + [sym_attribute_specifier] = STATE(863), + [sym_type_qualifier] = STATE(863), + [sym_storage_class_specifier] = STATE(863), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [555] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_sizeof] = ACTIONS(2155), + [anon_sym_unsigned] = ACTIONS(2155), + [anon_sym_volatile] = ACTIONS(2155), + [anon_sym_short] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym_null] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_goto] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2153), + [sym_preproc_directive] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2153), + [aux_sym_preproc_if_token1] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_LPAREN2] = ACTIONS(2153), + [anon_sym_typedef] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym__Atomic] = ACTIONS(2155), + [sym_primitive_type] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2155), + [aux_sym_preproc_include_token1] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_restrict] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_switch] = ACTIONS(2155), + [anon_sym_signed] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_long] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [sym_number_literal] = ACTIONS(2153), + [aux_sym_preproc_def_token1] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [anon_sym_auto] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_inline] = ACTIONS(2155), + [anon_sym___attribute__] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), }, [556] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(2157), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), }, [557] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1029), + [anon_sym_unsigned] = ACTIONS(1029), + [anon_sym_volatile] = ACTIONS(1029), + [anon_sym_short] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1031), + [sym_null] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_goto] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(1031), + [anon_sym_typedef] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1029), + [sym_primitive_type] = ACTIONS(1029), + [sym_true] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1029), + [aux_sym_preproc_include_token1] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_restrict] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_switch] = ACTIONS(1029), + [anon_sym_signed] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_long] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_auto] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1029), + [anon_sym___attribute__] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), }, [558] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_sizeof] = ACTIONS(2161), + [anon_sym_unsigned] = ACTIONS(2161), + [anon_sym_volatile] = ACTIONS(2161), + [anon_sym_short] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [sym_null] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_goto] = ACTIONS(2161), + [ts_builtin_sym_end] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [sym_preproc_directive] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2159), + [aux_sym_preproc_if_token1] = ACTIONS(2161), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_LPAREN2] = ACTIONS(2159), + [anon_sym_typedef] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym__Atomic] = ACTIONS(2161), + [sym_primitive_type] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), + [aux_sym_preproc_include_token1] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_restrict] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_signed] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_long] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [sym_number_literal] = ACTIONS(2159), + [aux_sym_preproc_def_token1] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [anon_sym_auto] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_inline] = ACTIONS(2161), + [anon_sym___attribute__] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), }, [559] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [560] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(1259), + [sym_null] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_default] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1259), + [sym_true] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), }, [561] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(866), + [sym_continue_statement] = STATE(866), + [sym_goto_statement] = STATE(866), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(866), + [sym_expression_statement] = STATE(866), + [sym_if_statement] = STATE(866), + [sym_do_statement] = STATE(866), + [sym_for_statement] = STATE(866), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(866), + [sym_return_statement] = STATE(866), + [sym_break_statement] = STATE(866), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(866), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [562] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [563] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [564] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(868), + [sym_math_expression] = STATE(868), + [sym_cast_expression] = STATE(868), + [sym_declaration] = STATE(867), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(868), + [sym_bitwise_expression] = STATE(868), + [sym_equality_expression] = STATE(868), + [sym_sizeof_expression] = STATE(868), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(868), + [sym_parenthesized_expression] = STATE(868), + [sym_concatenated_string] = STATE(868), + [sym_char_literal] = STATE(868), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(868), + [sym_assignment_expression] = STATE(868), + [sym_relational_expression] = STATE(868), + [sym_shift_expression] = STATE(868), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(2165), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [565] = { - [anon_sym_LPAREN2] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_long] = ACTIONS(2097), - [anon_sym__Atomic] = ACTIONS(2097), - [sym_primitive_type] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [sym_preproc_directive] = ACTIONS(2097), - [aux_sym_preproc_if_token1] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_restrict] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_typedef] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_signed] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [sym_number_literal] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2095), - [aux_sym_preproc_include_token1] = ACTIONS(2097), - [anon_sym_auto] = ACTIONS(2097), - [anon_sym_volatile] = ACTIONS(2097), - [anon_sym_inline] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_sizeof] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_unsigned] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_short] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym_null] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2095), - [ts_builtin_sym_end] = ACTIONS(2095), - [aux_sym_preproc_def_token1] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2097), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [566] = { - [aux_sym_preproc_if_token2] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(870), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(870), + [sym_null] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2171), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [567] = { - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_null] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [anon_sym_volatile] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_typedef] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2175), + [anon_sym__Atomic] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2177), + [anon_sym_restrict] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2175), + [anon_sym_long] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [anon_sym___attribute__] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsigned] = ACTIONS(2175), + [anon_sym_short] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2177), + [sym_preproc_directive] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [aux_sym_preproc_if_token1] = ACTIONS(2175), + [anon_sym_LPAREN2] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_primitive_type] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [aux_sym_preproc_include_token1] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2177), + [aux_sym_preproc_def_token1] = ACTIONS(2175), + [anon_sym_auto] = ACTIONS(2175), + [anon_sym_inline] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), }, [568] = { - [anon_sym_LPAREN2] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_long] = ACTIONS(2103), - [anon_sym__Atomic] = ACTIONS(2103), - [sym_primitive_type] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [sym_preproc_directive] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_restrict] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_typedef] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_signed] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [sym_number_literal] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2101), - [aux_sym_preproc_include_token1] = ACTIONS(2103), - [anon_sym_auto] = ACTIONS(2103), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym_inline] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_sizeof] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_unsigned] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_short] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym_null] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_goto] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [ts_builtin_sym_end] = ACTIONS(2101), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2179), }, [569] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2105), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LPAREN2] = ACTIONS(2181), }, [570] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2111), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_parenthesized_expression] = STATE(873), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [571] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(853), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(853), - [sym__field_declaration_list_item] = STATE(853), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(851), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(851), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(853), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(853), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(853), - [sym_field_declaration] = STATE(853), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [572] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [anon_sym_unsigned] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_struct] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_register] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), + [sym_parenthesized_expression] = STATE(875), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [573] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2129), + [sym_while_statement] = STATE(877), + [sym_continue_statement] = STATE(877), + [sym_goto_statement] = STATE(877), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(877), + [sym_expression_statement] = STATE(877), + [sym_if_statement] = STATE(877), + [sym_do_statement] = STATE(877), + [sym_for_statement] = STATE(877), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(877), + [sym_return_statement] = STATE(877), + [sym_break_statement] = STATE(877), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(877), + [sym_labeled_statement] = STATE(877), + [sym_case_statement] = STATE(877), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [574] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(857), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(857), - [sym__field_declaration_list_item] = STATE(857), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(856), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(856), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(857), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(857), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(857), - [sym_field_declaration] = STATE(857), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(2131), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(878), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(878), + [sym_math_expression] = STATE(878), + [sym_cast_expression] = STATE(878), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(878), + [sym_assignment_expression] = STATE(878), + [sym_relational_expression] = STATE(878), + [sym_shift_expression] = STATE(878), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(878), + [sym_bitwise_expression] = STATE(878), + [sym_equality_expression] = STATE(878), + [sym_sizeof_expression] = STATE(878), + [sym_compound_literal_expression] = STATE(878), + [sym_parenthesized_expression] = STATE(878), + [sym_char_literal] = STATE(878), + [sym_null] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(2189), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [575] = { - [sym_preproc_params] = STATE(860), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_COLON] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_auto] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2193), }, [576] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_enumerator] = STATE(880), + [sym_identifier] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(2195), + [sym_comment] = ACTIONS(3), }, [577] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(862), - [sym_storage_class_specifier] = STATE(862), - [sym_type_qualifier] = STATE(862), - [anon_sym_LPAREN2] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym_enumerator_list_repeat1] = STATE(882), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2195), + [sym_comment] = ACTIONS(3), }, [578] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(578), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(824), - [anon_sym_long] = ACTIONS(2137), - [anon_sym__Atomic] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_auto] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_inline] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [sym_identifier] = ACTIONS(829), - [anon_sym_unsigned] = ACTIONS(2137), - [anon_sym_short] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_signed] = ACTIONS(2137), - [anon_sym_register] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), + [anon_sym_volatile] = ACTIONS(2199), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(2199), + [anon_sym_restrict] = ACTIONS(2199), + [anon_sym_register] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_COLON] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym__Atomic] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_auto] = ACTIONS(2199), + [anon_sym_inline] = ACTIONS(2199), + [anon_sym___attribute__] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2201), }, [579] = { - [sym_function_field_declarator] = STATE(864), - [sym__field_declarator] = STATE(864), - [sym_pointer_field_declarator] = STATE(864), - [sym_array_field_declarator] = STATE(864), - [anon_sym_LPAREN2] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2203), }, [580] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(865), - [sym_logical_expression] = STATE(865), - [sym_bitwise_expression] = STATE(865), - [sym_cast_expression] = STATE(865), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(865), - [sym_char_literal] = STATE(865), - [sym_assignment_expression] = STATE(865), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(865), - [sym_math_expression] = STATE(865), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(865), - [sym_equality_expression] = STATE(865), - [sym_relational_expression] = STATE(865), - [sym_sizeof_expression] = STATE(865), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(865), - [sym_concatenated_string] = STATE(865), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(207), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(885), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [581] = { - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_COLON] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_COMMA] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [582] = { - [sym_function_field_declarator] = STATE(866), - [sym__field_declarator] = STATE(866), - [sym_pointer_field_declarator] = STATE(866), - [sym_array_field_declarator] = STATE(866), - [sym_type_qualifier] = STATE(867), - [aux_sym_type_definition_repeat1] = STATE(867), - [anon_sym_LPAREN2] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [aux_sym_concatenated_string_repeat1] = STATE(886), + [sym_string_literal] = STATE(886), + [anon_sym_PERCENT] = ACTIONS(712), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [583] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [sym_preproc_directive] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_def_token1] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [584] = { - [sym_bitfield_clause] = STATE(871), - [sym_parameter_list] = STATE(872), - [aux_sym_field_declaration_repeat1] = STATE(873), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2158), + [sym_concatenated_string] = STATE(887), + [sym_pointer_expression] = STATE(887), + [sym_logical_expression] = STATE(887), + [sym_math_expression] = STATE(887), + [sym_cast_expression] = STATE(887), + [sym_field_expression] = STATE(887), + [sym_conditional_expression] = STATE(887), + [sym_assignment_expression] = STATE(887), + [sym_relational_expression] = STATE(887), + [sym_shift_expression] = STATE(887), + [sym_subscript_expression] = STATE(887), + [sym_call_expression] = STATE(887), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(887), + [sym_bitwise_expression] = STATE(887), + [sym_equality_expression] = STATE(887), + [sym_sizeof_expression] = STATE(887), + [sym_compound_literal_expression] = STATE(887), + [sym_parenthesized_expression] = STATE(887), + [sym_char_literal] = STATE(887), + [sym_null] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2213), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [585] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2158), + [sym_concatenated_string] = STATE(888), + [sym_pointer_expression] = STATE(888), + [sym_logical_expression] = STATE(888), + [sym_math_expression] = STATE(888), + [sym_cast_expression] = STATE(888), + [sym_field_expression] = STATE(888), + [sym_conditional_expression] = STATE(888), + [sym_assignment_expression] = STATE(888), + [sym_relational_expression] = STATE(888), + [sym_shift_expression] = STATE(888), + [sym_subscript_expression] = STATE(888), + [sym_call_expression] = STATE(888), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(888), + [sym_bitwise_expression] = STATE(888), + [sym_equality_expression] = STATE(888), + [sym_sizeof_expression] = STATE(888), + [sym_compound_literal_expression] = STATE(888), + [sym_parenthesized_expression] = STATE(888), + [sym_char_literal] = STATE(888), + [sym_null] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2217), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [586] = { - [anon_sym_LPAREN2] = ACTIONS(2160), - [anon_sym_COLON] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_auto] = ACTIONS(2162), - [anon_sym_volatile] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2160), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), + [sym_concatenated_string] = STATE(889), + [sym_pointer_expression] = STATE(889), + [sym_logical_expression] = STATE(889), + [sym_math_expression] = STATE(889), + [sym_cast_expression] = STATE(889), + [sym_field_expression] = STATE(889), + [sym_conditional_expression] = STATE(889), + [sym_assignment_expression] = STATE(889), + [sym_relational_expression] = STATE(889), + [sym_shift_expression] = STATE(889), + [sym_subscript_expression] = STATE(889), + [sym_call_expression] = STATE(889), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(889), + [sym_bitwise_expression] = STATE(889), + [sym_equality_expression] = STATE(889), + [sym_sizeof_expression] = STATE(889), + [sym_compound_literal_expression] = STATE(889), + [sym_parenthesized_expression] = STATE(889), + [sym_char_literal] = STATE(889), + [sym_null] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2221), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [587] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(587), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(587), - [sym__field_declaration_list_item] = STATE(587), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(587), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(587), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(587), - [sym_field_declaration] = STATE(587), - [sym__declaration_specifiers] = STATE(308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2176), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2182), - [sym_preproc_directive] = ACTIONS(2185), - [anon_sym_unsigned] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(2188), - [anon_sym_short] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2164), - [aux_sym_preproc_def_token1] = ACTIONS(2196), - [anon_sym_signed] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2170), + [sym_concatenated_string] = STATE(890), + [sym_pointer_expression] = STATE(890), + [sym_logical_expression] = STATE(890), + [sym_math_expression] = STATE(890), + [sym_cast_expression] = STATE(890), + [sym_field_expression] = STATE(890), + [sym_conditional_expression] = STATE(890), + [sym_assignment_expression] = STATE(890), + [sym_relational_expression] = STATE(890), + [sym_shift_expression] = STATE(890), + [sym_subscript_expression] = STATE(890), + [sym_call_expression] = STATE(890), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(890), + [sym_bitwise_expression] = STATE(890), + [sym_equality_expression] = STATE(890), + [sym_sizeof_expression] = STATE(890), + [sym_compound_literal_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(890), + [sym_char_literal] = STATE(890), + [sym_null] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2225), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2223), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [588] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(875), - [sym_logical_expression] = STATE(875), - [sym_bitwise_expression] = STATE(875), - [sym_cast_expression] = STATE(875), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(875), - [sym_char_literal] = STATE(875), - [sym_assignment_expression] = STATE(875), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(875), - [sym_math_expression] = STATE(875), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(875), - [sym_equality_expression] = STATE(875), - [sym_relational_expression] = STATE(875), - [sym_sizeof_expression] = STATE(875), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(875), - [sym_concatenated_string] = STATE(875), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2206), - [sym_false] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(891), + [sym_pointer_expression] = STATE(891), + [sym_logical_expression] = STATE(891), + [sym_math_expression] = STATE(891), + [sym_cast_expression] = STATE(891), + [sym_field_expression] = STATE(891), + [sym_conditional_expression] = STATE(891), + [sym_assignment_expression] = STATE(891), + [sym_relational_expression] = STATE(891), + [sym_shift_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(891), + [sym_bitwise_expression] = STATE(891), + [sym_equality_expression] = STATE(891), + [sym_sizeof_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(891), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(891), + [sym_null] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2229), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [589] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(892), + [sym_pointer_expression] = STATE(892), + [sym_logical_expression] = STATE(892), + [sym_math_expression] = STATE(892), + [sym_cast_expression] = STATE(892), + [sym_field_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_assignment_expression] = STATE(892), + [sym_relational_expression] = STATE(892), + [sym_shift_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_call_expression] = STATE(892), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(892), + [sym_bitwise_expression] = STATE(892), + [sym_equality_expression] = STATE(892), + [sym_sizeof_expression] = STATE(892), + [sym_compound_literal_expression] = STATE(892), + [sym_parenthesized_expression] = STATE(892), + [sym_char_literal] = STATE(892), + [sym_null] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2233), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [590] = { - [sym_parenthesized_expression] = STATE(596), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(893), + [sym_pointer_expression] = STATE(893), + [sym_logical_expression] = STATE(893), + [sym_math_expression] = STATE(893), + [sym_cast_expression] = STATE(893), + [sym_field_expression] = STATE(893), + [sym_conditional_expression] = STATE(893), + [sym_assignment_expression] = STATE(893), + [sym_relational_expression] = STATE(893), + [sym_shift_expression] = STATE(893), + [sym_subscript_expression] = STATE(893), + [sym_call_expression] = STATE(893), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(893), + [sym_bitwise_expression] = STATE(893), + [sym_equality_expression] = STATE(893), + [sym_sizeof_expression] = STATE(893), + [sym_compound_literal_expression] = STATE(893), + [sym_parenthesized_expression] = STATE(893), + [sym_char_literal] = STATE(893), + [sym_null] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2237), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [591] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(2210), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(894), + [sym_pointer_expression] = STATE(894), + [sym_logical_expression] = STATE(894), + [sym_math_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_field_expression] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_relational_expression] = STATE(894), + [sym_shift_expression] = STATE(894), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(894), + [sym_bitwise_expression] = STATE(894), + [sym_equality_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(894), + [sym_null] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2241), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [592] = { - [anon_sym_LPAREN2] = ACTIONS(2212), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(895), + [sym_pointer_expression] = STATE(895), + [sym_logical_expression] = STATE(895), + [sym_math_expression] = STATE(895), + [sym_cast_expression] = STATE(895), + [sym_field_expression] = STATE(895), + [sym_conditional_expression] = STATE(895), + [sym_assignment_expression] = STATE(895), + [sym_relational_expression] = STATE(895), + [sym_shift_expression] = STATE(895), + [sym_subscript_expression] = STATE(895), + [sym_call_expression] = STATE(895), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(895), + [sym_bitwise_expression] = STATE(895), + [sym_equality_expression] = STATE(895), + [sym_sizeof_expression] = STATE(895), + [sym_compound_literal_expression] = STATE(895), + [sym_parenthesized_expression] = STATE(895), + [sym_char_literal] = STATE(895), + [sym_null] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(2245), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2243), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [593] = { - [sym_parenthesized_expression] = STATE(879), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(896), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(896), + [sym_math_expression] = STATE(896), + [sym_cast_expression] = STATE(896), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(896), + [sym_assignment_expression] = STATE(896), + [sym_relational_expression] = STATE(896), + [sym_shift_expression] = STATE(896), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(896), + [sym_bitwise_expression] = STATE(896), + [sym_equality_expression] = STATE(896), + [sym_sizeof_expression] = STATE(896), + [sym_compound_literal_expression] = STATE(896), + [sym_parenthesized_expression] = STATE(896), + [sym_char_literal] = STATE(896), + [sym_null] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2247), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [594] = { - [sym_parenthesized_expression] = STATE(880), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_PERCENT] = ACTIONS(651), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1399), }, [595] = { - [anon_sym_else] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(1240), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [596] = { - [anon_sym_DASH_DASH] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2218), - [anon_sym__Atomic] = ACTIONS(2218), - [anon_sym_TILDE] = ACTIONS(2216), - [sym_number_literal] = ACTIONS(2216), - [anon_sym_restrict] = ACTIONS(2218), - [anon_sym_typedef] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_signed] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_volatile] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_sizeof] = ACTIONS(2218), - [anon_sym_union] = ACTIONS(2218), - [anon_sym_unsigned] = ACTIONS(2218), - [anon_sym_short] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_long] = ACTIONS(2218), - [sym_true] = ACTIONS(2218), - [sym_primitive_type] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [sym_preproc_directive] = ACTIONS(2218), - [aux_sym_preproc_if_token1] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_switch] = ACTIONS(2218), - [sym_false] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [aux_sym_preproc_include_token1] = ACTIONS(2218), - [anon_sym_auto] = ACTIONS(2218), - [anon_sym_inline] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_case] = ACTIONS(2218), - [sym_null] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2218), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_goto] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2216), - [aux_sym_preproc_def_token1] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2251), }, [597] = { - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2220), - [sym_number_literal] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2220), - [aux_sym_preproc_include_token1] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_sizeof] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym_null] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2220), - [ts_builtin_sym_end] = ACTIONS(2220), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2220), + [aux_sym_concatenated_string_repeat1] = STATE(597), + [sym_string_literal] = STATE(597), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), }, [598] = { - [aux_sym_preproc_params_repeat1] = STATE(884), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1502), }, [599] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2228), - [sym_preproc_arg] = ACTIONS(2230), - }, - [600] = { - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_typedef] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2232), - [aux_sym_preproc_include_token1] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_sizeof] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_unsigned] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_null] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_goto] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2232), - [ts_builtin_sym_end] = ACTIONS(2232), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_register] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2232), - }, - [601] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2236), - }, - [602] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(677), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), - }, - [603] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(887), - [sym_logical_expression] = STATE(887), - [sym_bitwise_expression] = STATE(887), - [sym_cast_expression] = STATE(887), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(887), - [sym_char_literal] = STATE(887), - [sym_assignment_expression] = STATE(887), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(887), - [sym_math_expression] = STATE(887), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(887), - [sym_equality_expression] = STATE(887), - [sym_relational_expression] = STATE(887), - [sym_sizeof_expression] = STATE(887), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(887), - [sym_concatenated_string] = STATE(887), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2240), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2242), - [sym_false] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(207), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1506), + }, + [600] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1510), + }, + [601] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_QMARK] = ACTIONS(1500), + }, + [602] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1564), + }, + [603] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1564), }, [604] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1510), }, [605] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(2246), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1580), }, [606] = { - [anon_sym_LPAREN2] = ACTIONS(2248), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(651), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(1564), }, [607] = { - [sym_parenthesized_expression] = STATE(891), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [608] = { - [sym_parenthesized_expression] = STATE(892), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [sym_null] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_goto] = ACTIONS(2257), + [ts_builtin_sym_end] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [aux_sym_preproc_include_token1] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym___attribute__] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), }, [609] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(2250), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [aux_sym_preproc_params_repeat1] = STATE(901), + [anon_sym_COMMA] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2261), + [sym_comment] = ACTIONS(3), }, [610] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(894), - [sym_logical_expression] = STATE(894), - [sym_bitwise_expression] = STATE(894), - [sym_cast_expression] = STATE(894), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(894), - [sym_char_literal] = STATE(894), - [sym_assignment_expression] = STATE(894), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(894), - [sym_math_expression] = STATE(894), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(894), - [sym_equality_expression] = STATE(894), - [sym_relational_expression] = STATE(894), - [sym_sizeof_expression] = STATE(894), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(894), - [sym_concatenated_string] = STATE(894), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(107), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2263), + [sym_preproc_arg] = ACTIONS(2265), }, [611] = { - [anon_sym_LPAREN2] = ACTIONS(2256), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_RBRACK] = ACTIONS(2256), - [anon_sym_PLUS_EQ] = ACTIONS(2256), - [anon_sym_CARET_EQ] = ACTIONS(2256), - [anon_sym_LT_LT_EQ] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2256), - [anon_sym_PIPE_PIPE] = ACTIONS(2256), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_DASH_EQ] = ACTIONS(2256), - [anon_sym_SLASH_EQ] = ACTIONS(2256), - [anon_sym_GT_GT_EQ] = ACTIONS(2256), - [anon_sym_STAR_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2256), - [anon_sym_PIPE_EQ] = ACTIONS(2256), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2256), - [anon_sym_AMP_EQ] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_LT_EQ] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_DASH_GT] = ACTIONS(2256), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_sizeof] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2267), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [ts_builtin_sym_end] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2267), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(2267), + [anon_sym_typedef] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym__Atomic] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [aux_sym_preproc_include_token1] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [sym_number_literal] = ACTIONS(2267), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym___attribute__] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), }, [612] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2260), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2271), }, [613] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsigned] = ACTIONS(2275), + [anon_sym_volatile] = ACTIONS(2275), + [anon_sym_short] = ACTIONS(2275), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_COLON] = ACTIONS(2273), + [anon_sym__Atomic] = ACTIONS(2275), + [sym_primitive_type] = ACTIONS(2275), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_restrict] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_signed] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_long] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_auto] = ACTIONS(2275), + [anon_sym_inline] = ACTIONS(2275), + [anon_sym___attribute__] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2273), }, [614] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(898), - [sym_logical_expression] = STATE(898), - [sym_bitwise_expression] = STATE(898), - [sym_cast_expression] = STATE(898), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(898), - [sym_char_literal] = STATE(898), - [sym_assignment_expression] = STATE(898), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(898), - [sym_math_expression] = STATE(898), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(898), - [sym_equality_expression] = STATE(898), - [sym_relational_expression] = STATE(898), - [sym_sizeof_expression] = STATE(898), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(898), - [sym_concatenated_string] = STATE(898), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2266), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(199), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2264), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [615] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(899), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [616] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [617] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(879), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(903), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [618] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(900), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(905), + [sym_pointer_expression] = STATE(905), + [sym_logical_expression] = STATE(905), + [sym_math_expression] = STATE(905), + [sym_cast_expression] = STATE(905), + [sym_field_expression] = STATE(905), + [sym_conditional_expression] = STATE(905), + [sym_assignment_expression] = STATE(905), + [sym_relational_expression] = STATE(905), + [sym_shift_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_call_expression] = STATE(905), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(905), + [sym_bitwise_expression] = STATE(905), + [sym_equality_expression] = STATE(905), + [sym_sizeof_expression] = STATE(905), + [sym_compound_literal_expression] = STATE(905), + [sym_parenthesized_expression] = STATE(905), + [sym_char_literal] = STATE(905), + [sym_null] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(2279), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [619] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(902), - [sym_logical_expression] = STATE(902), - [sym_bitwise_expression] = STATE(902), - [sym_cast_expression] = STATE(902), - [sym_field_expression] = STATE(902), - [sym_compound_literal_expression] = STATE(902), - [sym_char_literal] = STATE(902), - [sym_assignment_expression] = STATE(902), - [sym_pointer_expression] = STATE(902), - [sym_shift_expression] = STATE(902), - [sym_math_expression] = STATE(902), - [sym_call_expression] = STATE(902), - [sym_conditional_expression] = STATE(902), - [sym_equality_expression] = STATE(902), - [sym_relational_expression] = STATE(902), - [sym_sizeof_expression] = STATE(902), - [sym_subscript_expression] = STATE(902), - [sym_parenthesized_expression] = STATE(902), - [sym_concatenated_string] = STATE(902), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(2268), - [sym_identifier] = ACTIONS(2270), - [sym_true] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(879), + [aux_sym_concatenated_string_repeat1] = STATE(906), + [sym_string_literal] = STATE(906), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [620] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(879), - }, - [621] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(879), - }, - [622] = { - [sym_string_literal] = STATE(903), - [aux_sym_concatenated_string_repeat1] = STATE(903), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), - }, - [623] = { - [sym_string_literal] = STATE(915), - [aux_sym_concatenated_string_repeat1] = STATE(915), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), - }, - [624] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(916), - [sym_bitwise_expression] = STATE(916), - [sym_cast_expression] = STATE(916), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(916), - [sym_char_literal] = STATE(916), - [sym_assignment_expression] = STATE(916), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(916), - [sym_math_expression] = STATE(916), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(916), - [sym_equality_expression] = STATE(916), - [sym_relational_expression] = STATE(916), - [sym_sizeof_expression] = STATE(916), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(916), - [sym_concatenated_string] = STATE(916), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2276), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(879), - }, - [625] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(917), - [sym_logical_expression] = STATE(917), - [sym_bitwise_expression] = STATE(917), - [sym_cast_expression] = STATE(917), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(917), - [sym_char_literal] = STATE(917), - [sym_assignment_expression] = STATE(917), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(917), - [sym_math_expression] = STATE(917), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(917), - [sym_equality_expression] = STATE(917), - [sym_relational_expression] = STATE(917), - [sym_sizeof_expression] = STATE(917), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(917), - [sym_concatenated_string] = STATE(917), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2280), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(879), - }, - [626] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(918), + [sym_concatenated_string] = STATE(918), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(918), - [sym_bitwise_expression] = STATE(918), + [sym_math_expression] = STATE(918), [sym_cast_expression] = STATE(918), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(918), - [sym_char_literal] = STATE(918), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(918), [sym_assignment_expression] = STATE(918), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(918), [sym_shift_expression] = STATE(918), - [sym_math_expression] = STATE(918), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(918), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(918), + [sym_bitwise_expression] = STATE(918), [sym_equality_expression] = STATE(918), - [sym_relational_expression] = STATE(918), [sym_sizeof_expression] = STATE(918), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(918), [sym_parenthesized_expression] = STATE(918), - [sym_concatenated_string] = STATE(918), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2282), + [sym_char_literal] = STATE(918), + [sym_null] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2283), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), + }, + [621] = { [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(2287), }, - [627] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(919), - [sym_logical_expression] = STATE(919), - [sym_bitwise_expression] = STATE(919), - [sym_cast_expression] = STATE(919), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(919), - [sym_char_literal] = STATE(919), - [sym_assignment_expression] = STATE(919), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(919), - [sym_math_expression] = STATE(919), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(919), - [sym_equality_expression] = STATE(919), - [sym_relational_expression] = STATE(919), - [sym_sizeof_expression] = STATE(919), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(919), - [sym_concatenated_string] = STATE(919), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2286), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2288), + [622] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(920), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [628] = { - [sym_string_literal] = STATE(35), - [sym__expression] = STATE(920), - [sym_logical_expression] = STATE(920), - [sym_bitwise_expression] = STATE(920), - [sym_cast_expression] = STATE(920), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(920), - [sym_char_literal] = STATE(920), - [sym_assignment_expression] = STATE(920), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(920), - [sym_math_expression] = STATE(920), - [sym_call_expression] = STATE(34), - [sym_conditional_expression] = STATE(920), - [sym_equality_expression] = STATE(920), - [sym_relational_expression] = STATE(920), - [sym_sizeof_expression] = STATE(920), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(920), - [sym_concatenated_string] = STATE(920), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(81), - [sym_true] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(2290), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(2292), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [sym_false] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(33), + [623] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RBRACK] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, - [629] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(921), - [sym_logical_expression] = STATE(921), - [sym_bitwise_expression] = STATE(921), - [sym_cast_expression] = STATE(921), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(921), - [sym_char_literal] = STATE(921), - [sym_assignment_expression] = STATE(921), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(921), - [sym_math_expression] = STATE(921), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(921), - [sym_equality_expression] = STATE(921), - [sym_relational_expression] = STATE(921), - [sym_sizeof_expression] = STATE(921), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(921), - [sym_concatenated_string] = STATE(921), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2296), + [624] = { + [aux_sym_concatenated_string_repeat1] = STATE(921), + [sym_string_literal] = STATE(921), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), + }, + [625] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [630] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(922), + [626] = { + [sym_concatenated_string] = STATE(922), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(922), - [sym_bitwise_expression] = STATE(922), + [sym_math_expression] = STATE(922), [sym_cast_expression] = STATE(922), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(922), - [sym_char_literal] = STATE(922), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(922), [sym_assignment_expression] = STATE(922), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(922), [sym_shift_expression] = STATE(922), - [sym_math_expression] = STATE(922), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(922), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(922), + [sym_bitwise_expression] = STATE(922), [sym_equality_expression] = STATE(922), - [sym_relational_expression] = STATE(922), [sym_sizeof_expression] = STATE(922), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(922), [sym_parenthesized_expression] = STATE(922), - [sym_concatenated_string] = STATE(922), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2298), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2300), + [sym_char_literal] = STATE(922), + [sym_null] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2291), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2289), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [631] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(923), + [627] = { + [sym_concatenated_string] = STATE(923), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(923), - [sym_bitwise_expression] = STATE(923), + [sym_math_expression] = STATE(923), [sym_cast_expression] = STATE(923), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(923), - [sym_char_literal] = STATE(923), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(923), [sym_assignment_expression] = STATE(923), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(923), [sym_shift_expression] = STATE(923), - [sym_math_expression] = STATE(923), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(923), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(923), + [sym_bitwise_expression] = STATE(923), [sym_equality_expression] = STATE(923), - [sym_relational_expression] = STATE(923), [sym_sizeof_expression] = STATE(923), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(923), [sym_parenthesized_expression] = STATE(923), - [sym_concatenated_string] = STATE(923), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2304), + [sym_char_literal] = STATE(923), + [sym_null] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2295), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2293), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [632] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(924), + [628] = { + [sym_concatenated_string] = STATE(924), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(924), - [sym_bitwise_expression] = STATE(924), + [sym_math_expression] = STATE(924), [sym_cast_expression] = STATE(924), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(924), - [sym_char_literal] = STATE(924), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(924), [sym_assignment_expression] = STATE(924), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(924), [sym_shift_expression] = STATE(924), - [sym_math_expression] = STATE(924), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(924), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(924), + [sym_bitwise_expression] = STATE(924), [sym_equality_expression] = STATE(924), - [sym_relational_expression] = STATE(924), [sym_sizeof_expression] = STATE(924), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(924), [sym_parenthesized_expression] = STATE(924), - [sym_concatenated_string] = STATE(924), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2306), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2308), + [sym_char_literal] = STATE(924), + [sym_null] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2299), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(879), - }, - [633] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2297), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [634] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(925), + [629] = { + [sym_concatenated_string] = STATE(925), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(925), - [sym_bitwise_expression] = STATE(925), + [sym_math_expression] = STATE(925), [sym_cast_expression] = STATE(925), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(925), - [sym_char_literal] = STATE(925), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(925), [sym_assignment_expression] = STATE(925), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(925), [sym_shift_expression] = STATE(925), - [sym_math_expression] = STATE(925), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(925), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(925), + [sym_bitwise_expression] = STATE(925), [sym_equality_expression] = STATE(925), - [sym_relational_expression] = STATE(925), [sym_sizeof_expression] = STATE(925), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(925), [sym_parenthesized_expression] = STATE(925), - [sym_concatenated_string] = STATE(925), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2312), + [sym_char_literal] = STATE(925), + [sym_null] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2303), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2301), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [635] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(926), + [630] = { + [sym_concatenated_string] = STATE(926), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(926), - [sym_bitwise_expression] = STATE(926), + [sym_math_expression] = STATE(926), [sym_cast_expression] = STATE(926), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(926), - [sym_char_literal] = STATE(926), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(926), [sym_assignment_expression] = STATE(926), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(926), [sym_shift_expression] = STATE(926), - [sym_math_expression] = STATE(926), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(926), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(926), + [sym_bitwise_expression] = STATE(926), [sym_equality_expression] = STATE(926), - [sym_relational_expression] = STATE(926), [sym_sizeof_expression] = STATE(926), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(926), [sym_parenthesized_expression] = STATE(926), - [sym_concatenated_string] = STATE(926), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2316), + [sym_char_literal] = STATE(926), + [sym_null] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2307), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2305), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [636] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2318), + [631] = { + [sym_concatenated_string] = STATE(927), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(927), + [sym_math_expression] = STATE(927), + [sym_cast_expression] = STATE(927), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(927), + [sym_assignment_expression] = STATE(927), + [sym_relational_expression] = STATE(927), + [sym_shift_expression] = STATE(927), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(927), + [sym_bitwise_expression] = STATE(927), + [sym_equality_expression] = STATE(927), + [sym_sizeof_expression] = STATE(927), + [sym_compound_literal_expression] = STATE(927), + [sym_parenthesized_expression] = STATE(927), + [sym_char_literal] = STATE(927), + [sym_null] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2309), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [637] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(928), + [632] = { + [sym_concatenated_string] = STATE(928), + [sym_pointer_expression] = STATE(345), [sym_logical_expression] = STATE(928), - [sym_bitwise_expression] = STATE(928), + [sym_math_expression] = STATE(928), [sym_cast_expression] = STATE(928), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(928), - [sym_char_literal] = STATE(928), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(928), [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(357), + [sym_relational_expression] = STATE(928), [sym_shift_expression] = STATE(928), - [sym_math_expression] = STATE(928), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(928), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(928), + [sym_bitwise_expression] = STATE(928), [sym_equality_expression] = STATE(928), - [sym_relational_expression] = STATE(928), [sym_sizeof_expression] = STATE(928), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(928), [sym_parenthesized_expression] = STATE(928), - [sym_concatenated_string] = STATE(928), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2322), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(928), + [sym_null] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2315), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2313), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [638] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(929), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [633] = { + [sym_concatenated_string] = STATE(929), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(929), + [sym_math_expression] = STATE(929), + [sym_cast_expression] = STATE(929), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(929), + [sym_assignment_expression] = STATE(929), + [sym_relational_expression] = STATE(929), + [sym_shift_expression] = STATE(929), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(929), + [sym_bitwise_expression] = STATE(929), + [sym_equality_expression] = STATE(929), + [sym_sizeof_expression] = STATE(929), + [sym_compound_literal_expression] = STATE(929), + [sym_parenthesized_expression] = STATE(929), + [sym_char_literal] = STATE(929), + [sym_null] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2319), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2317), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [639] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(615), + [634] = { + [sym_concatenated_string] = STATE(930), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(930), + [sym_math_expression] = STATE(930), + [sym_cast_expression] = STATE(930), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(930), + [sym_assignment_expression] = STATE(930), + [sym_relational_expression] = STATE(930), + [sym_shift_expression] = STATE(930), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(930), + [sym_bitwise_expression] = STATE(930), + [sym_equality_expression] = STATE(930), + [sym_sizeof_expression] = STATE(930), + [sym_compound_literal_expression] = STATE(930), + [sym_parenthesized_expression] = STATE(930), + [sym_char_literal] = STATE(930), + [sym_null] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2321), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [640] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(907), + [635] = { + [anon_sym_PERCENT] = ACTIONS(2325), + [anon_sym_RBRACK] = ACTIONS(2327), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2327), + [anon_sym_AMP_EQ] = ACTIONS(2327), + [anon_sym_DASH_EQ] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_CARET] = ACTIONS(2325), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2325), + [anon_sym_DASH_GT] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_GT_GT] = ACTIONS(2325), + [anon_sym_SLASH] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_COLON] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_PLUS_EQ] = ACTIONS(2327), + [anon_sym_STAR_EQ] = ACTIONS(2327), + [anon_sym_LT_LT_EQ] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_EQ_EQ] = ACTIONS(2327), + [anon_sym_GT_EQ] = ACTIONS(2327), + [anon_sym_PIPE_PIPE] = ACTIONS(2327), + [anon_sym_CARET_EQ] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_SLASH_EQ] = ACTIONS(2327), + [anon_sym_GT_GT_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2325), + [anon_sym_PIPE_EQ] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_DOT] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2327), }, - [641] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(930), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [636] = { + [sym_concatenated_string] = STATE(931), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(931), + [sym_math_expression] = STATE(931), + [sym_cast_expression] = STATE(931), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(931), + [sym_assignment_expression] = STATE(931), + [sym_relational_expression] = STATE(931), + [sym_shift_expression] = STATE(931), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(931), + [sym_bitwise_expression] = STATE(931), + [sym_equality_expression] = STATE(931), + [sym_sizeof_expression] = STATE(931), + [sym_compound_literal_expression] = STATE(931), + [sym_parenthesized_expression] = STATE(931), + [sym_char_literal] = STATE(931), + [sym_null] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2331), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2329), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [642] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(932), + [637] = { + [sym_concatenated_string] = STATE(932), + [sym_pointer_expression] = STATE(83), [sym_logical_expression] = STATE(932), - [sym_bitwise_expression] = STATE(932), + [sym_math_expression] = STATE(932), [sym_cast_expression] = STATE(932), - [sym_field_expression] = STATE(932), - [sym_compound_literal_expression] = STATE(932), - [sym_char_literal] = STATE(932), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(932), [sym_assignment_expression] = STATE(932), - [sym_pointer_expression] = STATE(932), + [sym_relational_expression] = STATE(932), [sym_shift_expression] = STATE(932), - [sym_math_expression] = STATE(932), - [sym_call_expression] = STATE(932), - [sym_conditional_expression] = STATE(932), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(932), + [sym_bitwise_expression] = STATE(932), [sym_equality_expression] = STATE(932), - [sym_relational_expression] = STATE(932), [sym_sizeof_expression] = STATE(932), - [sym_subscript_expression] = STATE(932), + [sym_compound_literal_expression] = STATE(932), [sym_parenthesized_expression] = STATE(932), - [sym_concatenated_string] = STATE(932), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2326), - [sym_true] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(2326), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(2328), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(907), - }, - [643] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(932), + [sym_null] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2335), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2333), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [644] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(907), + [638] = { + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_RBRACK] = ACTIONS(2339), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2339), + [anon_sym_AMP_EQ] = ACTIONS(2339), + [anon_sym_DASH_EQ] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_LT_EQ] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_EQ] = ACTIONS(2337), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_PLUS_EQ] = ACTIONS(2339), + [anon_sym_STAR_EQ] = ACTIONS(2339), + [anon_sym_LT_LT_EQ] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(2339), + [anon_sym_EQ_EQ] = ACTIONS(2339), + [anon_sym_GT_EQ] = ACTIONS(2339), + [anon_sym_PIPE_PIPE] = ACTIONS(2339), + [anon_sym_CARET_EQ] = ACTIONS(2339), + [anon_sym_COMMA] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_SLASH_EQ] = ACTIONS(2339), + [anon_sym_GT_GT_EQ] = ACTIONS(2339), + [anon_sym_BANG_EQ] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_PIPE_EQ] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2339), }, - [645] = { - [sym_string_literal] = STATE(933), - [aux_sym_concatenated_string_repeat1] = STATE(933), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DOT] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(115), + [639] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), }, - [646] = { - [sym_string_literal] = STATE(945), - [aux_sym_concatenated_string_repeat1] = STATE(945), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(687), + [640] = { + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, - [647] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(946), - [sym_logical_expression] = STATE(946), - [sym_bitwise_expression] = STATE(946), - [sym_cast_expression] = STATE(946), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(946), - [sym_char_literal] = STATE(946), - [sym_assignment_expression] = STATE(946), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(946), - [sym_math_expression] = STATE(946), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(946), - [sym_equality_expression] = STATE(946), - [sym_relational_expression] = STATE(946), - [sym_sizeof_expression] = STATE(946), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(946), - [sym_concatenated_string] = STATE(946), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(907), + [641] = { + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, - [648] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(947), - [sym_char_literal] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2334), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2336), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(907), + [642] = { + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, - [649] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(948), - [sym_logical_expression] = STATE(948), - [sym_bitwise_expression] = STATE(948), - [sym_cast_expression] = STATE(948), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(948), - [sym_char_literal] = STATE(948), - [sym_assignment_expression] = STATE(948), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(948), - [sym_math_expression] = STATE(948), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(948), - [sym_equality_expression] = STATE(948), - [sym_relational_expression] = STATE(948), - [sym_sizeof_expression] = STATE(948), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(948), - [sym_concatenated_string] = STATE(948), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2340), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(907), + [643] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(935), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [650] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(949), - [sym_logical_expression] = STATE(949), - [sym_bitwise_expression] = STATE(949), - [sym_cast_expression] = STATE(949), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(949), - [sym_char_literal] = STATE(949), - [sym_assignment_expression] = STATE(949), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(949), - [sym_math_expression] = STATE(949), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(949), - [sym_equality_expression] = STATE(949), - [sym_relational_expression] = STATE(949), - [sym_sizeof_expression] = STATE(949), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(949), - [sym_concatenated_string] = STATE(949), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2344), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(907), + [644] = { + [sym_concatenated_string] = STATE(937), + [sym_pointer_expression] = STATE(937), + [sym_logical_expression] = STATE(937), + [sym_math_expression] = STATE(937), + [sym_cast_expression] = STATE(937), + [sym_field_expression] = STATE(937), + [sym_conditional_expression] = STATE(937), + [sym_assignment_expression] = STATE(937), + [sym_relational_expression] = STATE(937), + [sym_shift_expression] = STATE(937), + [sym_subscript_expression] = STATE(937), + [sym_call_expression] = STATE(937), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(937), + [sym_bitwise_expression] = STATE(937), + [sym_equality_expression] = STATE(937), + [sym_sizeof_expression] = STATE(937), + [sym_compound_literal_expression] = STATE(937), + [sym_parenthesized_expression] = STATE(937), + [sym_char_literal] = STATE(937), + [sym_null] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2343), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, - [651] = { - [anon_sym_LPAREN2] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2346), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_COLON] = ACTIONS(2346), - [anon_sym_RBRACK] = ACTIONS(2346), - [anon_sym_PLUS_EQ] = ACTIONS(2346), - [anon_sym_CARET_EQ] = ACTIONS(2346), - [anon_sym_LT_LT_EQ] = ACTIONS(2346), - [anon_sym_QMARK] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2348), - [anon_sym_EQ_EQ] = ACTIONS(2346), - [anon_sym_GT_EQ] = ACTIONS(2346), - [anon_sym_PIPE_PIPE] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2348), - [anon_sym_PLUS] = ACTIONS(2348), - [anon_sym_STAR] = ACTIONS(2348), - [anon_sym_PLUS_PLUS] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_DASH_EQ] = ACTIONS(2346), - [anon_sym_SLASH_EQ] = ACTIONS(2346), - [anon_sym_GT_GT_EQ] = ACTIONS(2346), - [anon_sym_STAR_EQ] = ACTIONS(2346), - [anon_sym_BANG_EQ] = ACTIONS(2346), - [anon_sym_LT_LT] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2346), - [anon_sym_PIPE_EQ] = ACTIONS(2346), - [anon_sym_COMMA] = ACTIONS(2346), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_LBRACK] = ACTIONS(2346), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2346), - [anon_sym_AMP_EQ] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_LT_EQ] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2348), - [anon_sym_CARET] = ACTIONS(2348), - [anon_sym_GT_GT] = ACTIONS(2348), - [anon_sym_EQ] = ACTIONS(2348), - [anon_sym_DASH_GT] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2348), - [anon_sym_DOT] = ACTIONS(2346), + [645] = { + [aux_sym_concatenated_string_repeat1] = STATE(938), + [sym_string_literal] = STATE(938), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, - [652] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(950), + [646] = { + [sym_concatenated_string] = STATE(950), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(950), - [sym_bitwise_expression] = STATE(950), + [sym_math_expression] = STATE(950), [sym_cast_expression] = STATE(950), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(950), - [sym_char_literal] = STATE(950), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(950), [sym_assignment_expression] = STATE(950), - [sym_pointer_expression] = STATE(357), + [sym_relational_expression] = STATE(950), [sym_shift_expression] = STATE(950), - [sym_math_expression] = STATE(950), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(950), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(950), + [sym_bitwise_expression] = STATE(950), [sym_equality_expression] = STATE(950), - [sym_relational_expression] = STATE(950), [sym_sizeof_expression] = STATE(950), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(950), [sym_parenthesized_expression] = STATE(950), - [sym_concatenated_string] = STATE(950), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(950), + [sym_null] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2351), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2349), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [653] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(951), - [sym_logical_expression] = STATE(951), - [sym_bitwise_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(951), - [sym_math_expression] = STATE(951), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(951), - [sym_equality_expression] = STATE(951), - [sym_relational_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(951), - [sym_concatenated_string] = STATE(951), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(2356), + [647] = { [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(2353), }, - [654] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(952), - [sym_concatenated_string] = STATE(952), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2358), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2358), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2360), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(907), + [648] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(952), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [655] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(953), - [sym_logical_expression] = STATE(953), - [sym_bitwise_expression] = STATE(953), - [sym_cast_expression] = STATE(953), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(953), - [sym_char_literal] = STATE(953), - [sym_assignment_expression] = STATE(953), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(953), - [sym_math_expression] = STATE(953), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(953), - [sym_equality_expression] = STATE(953), - [sym_relational_expression] = STATE(953), - [sym_sizeof_expression] = STATE(953), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(953), - [sym_concatenated_string] = STATE(953), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2364), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(907), + [649] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, - [656] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(911), + [650] = { + [aux_sym_concatenated_string_repeat1] = STATE(953), + [sym_string_literal] = STATE(953), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), + }, + [651] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [657] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(954), + [652] = { + [sym_concatenated_string] = STATE(954), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(954), - [sym_bitwise_expression] = STATE(954), + [sym_math_expression] = STATE(954), [sym_cast_expression] = STATE(954), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(954), - [sym_char_literal] = STATE(954), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(954), [sym_assignment_expression] = STATE(954), - [sym_pointer_expression] = STATE(357), + [sym_relational_expression] = STATE(954), [sym_shift_expression] = STATE(954), - [sym_math_expression] = STATE(954), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(954), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(954), + [sym_bitwise_expression] = STATE(954), [sym_equality_expression] = STATE(954), - [sym_relational_expression] = STATE(954), [sym_sizeof_expression] = STATE(954), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(954), [sym_parenthesized_expression] = STATE(954), - [sym_concatenated_string] = STATE(954), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2366), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2366), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(954), + [sym_null] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2355), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [658] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(955), + [653] = { + [sym_concatenated_string] = STATE(955), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(955), - [sym_bitwise_expression] = STATE(955), + [sym_math_expression] = STATE(955), [sym_cast_expression] = STATE(955), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(955), - [sym_char_literal] = STATE(955), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(955), [sym_assignment_expression] = STATE(955), - [sym_pointer_expression] = STATE(357), + [sym_relational_expression] = STATE(955), [sym_shift_expression] = STATE(955), - [sym_math_expression] = STATE(955), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(955), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(955), + [sym_bitwise_expression] = STATE(955), [sym_equality_expression] = STATE(955), - [sym_relational_expression] = STATE(955), [sym_sizeof_expression] = STATE(955), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(955), [sym_parenthesized_expression] = STATE(955), - [sym_concatenated_string] = STATE(955), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(907), - }, - [659] = { - [sym_type_qualifier] = STATE(662), - [sym_function_declarator] = STATE(661), - [sym_array_declarator] = STATE(661), - [sym_pointer_declarator] = STATE(661), - [aux_sym_type_definition_repeat1] = STATE(662), - [sym__declarator] = STATE(661), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1628), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), - }, - [660] = { - [anon_sym_LPAREN2] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - }, - [661] = { - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [sym_char_literal] = STATE(955), + [sym_null] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2361), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(2376), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2359), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [662] = { - [sym_type_qualifier] = STATE(662), - [aux_sym_type_definition_repeat1] = STATE(662), - [anon_sym_LPAREN2] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1017), - [anon_sym__Atomic] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1019), + [654] = { + [sym_concatenated_string] = STATE(956), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(956), + [sym_math_expression] = STATE(956), + [sym_cast_expression] = STATE(956), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(956), + [sym_assignment_expression] = STATE(956), + [sym_relational_expression] = STATE(956), + [sym_shift_expression] = STATE(956), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(956), + [sym_bitwise_expression] = STATE(956), + [sym_equality_expression] = STATE(956), + [sym_sizeof_expression] = STATE(956), + [sym_compound_literal_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_char_literal] = STATE(956), + [sym_null] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2363), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [663] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(2378), + [655] = { + [sym_concatenated_string] = STATE(957), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(957), + [sym_math_expression] = STATE(957), + [sym_cast_expression] = STATE(957), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(957), + [sym_assignment_expression] = STATE(957), + [sym_relational_expression] = STATE(957), + [sym_shift_expression] = STATE(957), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(957), + [sym_bitwise_expression] = STATE(957), + [sym_equality_expression] = STATE(957), + [sym_sizeof_expression] = STATE(957), + [sym_compound_literal_expression] = STATE(957), + [sym_parenthesized_expression] = STATE(957), + [sym_char_literal] = STATE(957), + [sym_null] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2367), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [664] = { - [anon_sym_LPAREN2] = ACTIONS(2380), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_EQ] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2380), - }, - [665] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(2378), - }, - [666] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(958), + [656] = { + [sym_concatenated_string] = STATE(958), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(958), - [sym_bitwise_expression] = STATE(958), + [sym_math_expression] = STATE(958), [sym_cast_expression] = STATE(958), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(958), - [sym_char_literal] = STATE(958), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(958), [sym_assignment_expression] = STATE(958), - [sym_type_qualifier] = STATE(719), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(958), - [sym_call_expression] = STATE(357), + [sym_relational_expression] = STATE(958), [sym_shift_expression] = STATE(958), - [aux_sym_type_definition_repeat1] = STATE(719), - [sym_conditional_expression] = STATE(958), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(958), + [sym_bitwise_expression] = STATE(958), [sym_equality_expression] = STATE(958), - [sym_relational_expression] = STATE(958), [sym_sizeof_expression] = STATE(958), - [sym_subscript_expression] = STATE(357), + [sym_compound_literal_expression] = STATE(958), [sym_parenthesized_expression] = STATE(958), - [sym_concatenated_string] = STATE(958), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2384), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(2378), + [sym_char_literal] = STATE(958), + [sym_null] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2371), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [657] = { + [sym_concatenated_string] = STATE(959), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(959), + [sym_math_expression] = STATE(959), + [sym_cast_expression] = STATE(959), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(959), + [sym_assignment_expression] = STATE(959), + [sym_relational_expression] = STATE(959), + [sym_shift_expression] = STATE(959), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(959), + [sym_bitwise_expression] = STATE(959), + [sym_equality_expression] = STATE(959), + [sym_sizeof_expression] = STATE(959), + [sym_compound_literal_expression] = STATE(959), + [sym_parenthesized_expression] = STATE(959), + [sym_char_literal] = STATE(959), + [sym_null] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2375), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [658] = { + [sym_concatenated_string] = STATE(960), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(960), + [sym_math_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(960), + [sym_assignment_expression] = STATE(960), + [sym_relational_expression] = STATE(960), + [sym_shift_expression] = STATE(960), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(960), + [sym_bitwise_expression] = STATE(960), + [sym_equality_expression] = STATE(960), + [sym_sizeof_expression] = STATE(960), + [sym_compound_literal_expression] = STATE(960), + [sym_parenthesized_expression] = STATE(960), + [sym_char_literal] = STATE(960), + [sym_null] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2381), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2379), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [659] = { + [sym_concatenated_string] = STATE(961), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(961), + [sym_math_expression] = STATE(961), + [sym_cast_expression] = STATE(961), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(961), + [sym_assignment_expression] = STATE(961), + [sym_relational_expression] = STATE(961), + [sym_shift_expression] = STATE(961), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(961), + [sym_bitwise_expression] = STATE(961), + [sym_equality_expression] = STATE(961), + [sym_sizeof_expression] = STATE(961), + [sym_compound_literal_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(961), + [sym_char_literal] = STATE(961), + [sym_null] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2383), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [660] = { + [sym_concatenated_string] = STATE(962), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(962), + [sym_math_expression] = STATE(962), + [sym_cast_expression] = STATE(962), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(962), + [sym_assignment_expression] = STATE(962), + [sym_relational_expression] = STATE(962), + [sym_shift_expression] = STATE(962), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(962), + [sym_bitwise_expression] = STATE(962), + [sym_equality_expression] = STATE(962), + [sym_sizeof_expression] = STATE(962), + [sym_compound_literal_expression] = STATE(962), + [sym_parenthesized_expression] = STATE(962), + [sym_char_literal] = STATE(962), + [sym_null] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2387), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [661] = { + [sym_concatenated_string] = STATE(963), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(963), + [sym_math_expression] = STATE(963), + [sym_cast_expression] = STATE(963), + [sym_field_expression] = STATE(35), + [sym_conditional_expression] = STATE(963), + [sym_assignment_expression] = STATE(963), + [sym_relational_expression] = STATE(963), + [sym_shift_expression] = STATE(963), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym__expression] = STATE(963), + [sym_bitwise_expression] = STATE(963), + [sym_equality_expression] = STATE(963), + [sym_sizeof_expression] = STATE(963), + [sym_compound_literal_expression] = STATE(963), + [sym_parenthesized_expression] = STATE(963), + [sym_char_literal] = STATE(963), + [sym_null] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(2391), + [sym_identifier] = ACTIONS(101), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [662] = { + [sym_concatenated_string] = STATE(964), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(964), + [sym_math_expression] = STATE(964), + [sym_cast_expression] = STATE(964), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(964), + [sym_assignment_expression] = STATE(964), + [sym_relational_expression] = STATE(964), + [sym_shift_expression] = STATE(964), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(964), + [sym_bitwise_expression] = STATE(964), + [sym_equality_expression] = STATE(964), + [sym_sizeof_expression] = STATE(964), + [sym_compound_literal_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_char_literal] = STATE(964), + [sym_null] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(2397), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(2395), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), + }, + [663] = { + [sym_parameter_list] = STATE(381), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2399), + }, + [664] = { + [sym_type_qualifier] = STATE(664), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_identifier] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(2114), + }, + [665] = { + [sym_parameter_list] = STATE(668), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), + }, + [666] = { + [sym_function_declarator] = STATE(965), + [sym__declarator] = STATE(965), + [sym_type_qualifier] = STATE(664), + [sym_pointer_declarator] = STATE(965), + [sym_array_declarator] = STATE(965), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_identifier] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(945), }, [667] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(2403), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), }, [668] = { + [sym_attribute_specifier] = STATE(966), + [aux_sym_function_declarator_repeat1] = STATE(966), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_LPAREN2] = ACTIONS(1666), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1666), }, [669] = { - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(2405), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2405), }, [670] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2390), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(326), }, [671] = { - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_default] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), - [anon_sym__Atomic] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2392), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_restrict] = ACTIONS(2394), - [anon_sym_typedef] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_signed] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2392), - [anon_sym_volatile] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_sizeof] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsigned] = ACTIONS(2394), - [anon_sym_short] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_LPAREN2] = ACTIONS(2392), - [anon_sym_long] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_primitive_type] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [sym_preproc_directive] = ACTIONS(2394), - [aux_sym_preproc_if_token1] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [aux_sym_preproc_include_token1] = ACTIONS(2394), - [anon_sym_auto] = ACTIONS(2394), - [anon_sym_inline] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_goto] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [aux_sym_preproc_def_token1] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), + [sym_parameter_list] = STATE(861), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), }, [672] = { - [aux_sym_declaration_repeat1] = STATE(672), + [anon_sym_COMMA] = ACTIONS(2407), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2407), }, [673] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [674] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(2405), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), }, [675] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2415), + [sym_concatenated_string] = STATE(969), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(969), + [sym_math_expression] = STATE(969), + [sym_cast_expression] = STATE(969), + [sym_type_qualifier] = STATE(841), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_conditional_expression] = STATE(969), + [sym_assignment_expression] = STATE(969), + [sym_relational_expression] = STATE(969), + [sym_shift_expression] = STATE(969), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(969), + [sym_bitwise_expression] = STATE(969), + [sym_equality_expression] = STATE(969), + [sym_sizeof_expression] = STATE(969), + [sym_compound_literal_expression] = STATE(969), + [sym_parenthesized_expression] = STATE(969), + [sym_char_literal] = STATE(969), + [sym_null] = ACTIONS(2413), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2415), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [676] = { - [sym_string_literal] = STATE(676), - [aux_sym_concatenated_string_repeat1] = STATE(676), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [677] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_sizeof] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2421), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_switch] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [anon_sym_auto] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), }, [678] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), - [anon_sym_LT_LT_EQ] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_EQ] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_declaration_repeat1] = STATE(678), + [anon_sym_COMMA] = ACTIONS(2423), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(2407), }, [679] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_attribute_specifier] = STATE(970), + [aux_sym_function_declarator_repeat1] = STATE(970), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2426), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(2426), }, [680] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(972), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(972), + [sym_math_expression] = STATE(972), + [sym_cast_expression] = STATE(972), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(972), + [sym_assignment_expression] = STATE(972), + [sym_relational_expression] = STATE(972), + [sym_shift_expression] = STATE(972), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(972), + [sym_bitwise_expression] = STATE(972), + [sym_equality_expression] = STATE(972), + [sym_sizeof_expression] = STATE(972), + [sym_compound_literal_expression] = STATE(972), + [sym_parenthesized_expression] = STATE(972), + [sym_char_literal] = STATE(972), + [sym_null] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2428), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2428), + [anon_sym_RPAREN] = ACTIONS(2432), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [681] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [682] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(974), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(974), + [sym_math_expression] = STATE(974), + [sym_cast_expression] = STATE(974), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(974), + [sym_assignment_expression] = STATE(974), + [sym_relational_expression] = STATE(974), + [sym_shift_expression] = STATE(974), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(974), + [sym_bitwise_expression] = STATE(974), + [sym_equality_expression] = STATE(974), + [sym_sizeof_expression] = STATE(974), + [sym_compound_literal_expression] = STATE(974), + [sym_parenthesized_expression] = STATE(974), + [sym_char_literal] = STATE(974), + [sym_null] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2436), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(2434), + [sym_true] = ACTIONS(2436), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [683] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(975), + [sym_continue_statement] = STATE(975), + [sym_goto_statement] = STATE(975), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(975), + [sym_expression_statement] = STATE(975), + [sym_if_statement] = STATE(975), + [sym_do_statement] = STATE(975), + [sym_for_statement] = STATE(975), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(975), + [sym_return_statement] = STATE(975), + [sym_break_statement] = STATE(975), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(975), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [684] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [685] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [686] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(977), + [sym_math_expression] = STATE(977), + [sym_cast_expression] = STATE(977), + [sym_declaration] = STATE(976), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(977), + [sym_bitwise_expression] = STATE(977), + [sym_equality_expression] = STATE(977), + [sym_sizeof_expression] = STATE(977), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(977), + [sym_parenthesized_expression] = STATE(977), + [sym_concatenated_string] = STATE(977), + [sym_char_literal] = STATE(977), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(977), + [sym_assignment_expression] = STATE(977), + [sym_relational_expression] = STATE(977), + [sym_shift_expression] = STATE(977), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [687] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [688] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(961), - [sym_logical_expression] = STATE(961), - [sym_bitwise_expression] = STATE(961), - [sym_cast_expression] = STATE(961), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(961), - [sym_char_literal] = STATE(961), - [sym_assignment_expression] = STATE(961), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(961), - [sym_math_expression] = STATE(961), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(961), - [sym_equality_expression] = STATE(961), - [sym_relational_expression] = STATE(961), - [sym_sizeof_expression] = STATE(961), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(961), - [sym_concatenated_string] = STATE(961), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(107), + [sym_identifier] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), }, [689] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(1732), + [sym__declaration_specifiers] = STATE(984), + [sym_preproc_def] = STATE(983), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(983), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(983), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(983), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(983), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(983), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(983), + [sym_field_declaration] = STATE(983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2448), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(2452), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(352), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2448), + [aux_sym_preproc_def_token1] = ACTIONS(2456), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [690] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(962), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2458), + [sym_preproc_arg] = ACTIONS(2460), }, [691] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(2427), - [anon_sym_CARET_EQ] = ACTIONS(2427), - [anon_sym_LT_LT_EQ] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(2427), - [anon_sym_SLASH_EQ] = ACTIONS(2427), - [anon_sym_GT_GT_EQ] = ACTIONS(2427), - [anon_sym_STAR_EQ] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2427), - [anon_sym_AMP_EQ] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(2462), }, [692] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2464), + [aux_sym_preproc_if_token1] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2464), + [aux_sym_preproc_def_token1] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym___attribute__] = ACTIONS(2464), }, [693] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(966), - [sym_logical_expression] = STATE(966), - [sym_bitwise_expression] = STATE(966), - [sym_cast_expression] = STATE(966), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(966), - [sym_char_literal] = STATE(966), - [sym_assignment_expression] = STATE(966), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(966), - [sym_math_expression] = STATE(966), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(966), - [sym_equality_expression] = STATE(966), - [sym_relational_expression] = STATE(966), - [sym_sizeof_expression] = STATE(966), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(966), - [sym_concatenated_string] = STATE(966), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(2433), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(2468), }, [694] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(967), - [sym_logical_expression] = STATE(967), - [sym_bitwise_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(967), - [sym_math_expression] = STATE(967), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(967), - [sym_equality_expression] = STATE(967), - [sym_relational_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(967), - [sym_concatenated_string] = STATE(967), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2441), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(907), + [sym_identifier] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), }, [695] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(1732), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(992), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(992), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(2472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [696] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_preproc_if_token2] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), }, [697] = { - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2445), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_CARET_EQ] = ACTIONS(2443), - [anon_sym_LT_LT_EQ] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_SLASH_EQ] = ACTIONS(2443), - [anon_sym_GT_GT_EQ] = ACTIONS(2443), - [anon_sym_STAR_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_EQ] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2443), - [anon_sym_AMP_EQ] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_GT_GT] = ACTIONS(2445), - [anon_sym_DASH_GT] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2445), - [anon_sym_DOT] = ACTIONS(2443), + [sym_pointer_field_declarator] = STATE(995), + [sym_array_field_declarator] = STATE(995), + [sym_bitfield_clause] = STATE(994), + [sym_function_field_declarator] = STATE(995), + [sym__field_declarator] = STATE(995), + [sym_identifier] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(2476), }, [698] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), }, [699] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_signed] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym_auto] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), }, [700] = { - [sym_string_literal] = STATE(975), - [aux_sym_concatenated_string_repeat1] = STATE(975), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(115), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(997), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(997), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(2482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [701] = { - [aux_sym_initializer_list_repeat1] = STATE(988), - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_if_token2] = ACTIONS(2484), + [sym_comment] = ACTIONS(3), }, [702] = { - [sym_subscript_designator] = STATE(990), - [sym_field_designator] = STATE(990), - [aux_sym_initializer_pair_repeat1] = STATE(990), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(2489), - [anon_sym_DOT] = ACTIONS(2491), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2486), }, [703] = { - [aux_sym_initializer_list_repeat1] = STATE(988), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(1471), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), }, [704] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(1044), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2488), + [sym_preproc_arg] = ACTIONS(2490), }, [705] = { - [sym_union_specifier] = STATE(417), - [sym_macro_type_specifier] = STATE(417), - [sym__type_specifier] = STATE(417), - [aux_sym__declaration_specifiers_repeat1] = STATE(418), - [sym_sized_type_specifier] = STATE(417), - [sym_parameter_declaration] = STATE(991), - [sym_enum_specifier] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(419), - [sym__declaration_specifiers] = STATE(420), - [sym_storage_class_specifier] = STATE(418), - [sym_type_qualifier] = STATE(418), - [sym_struct_specifier] = STATE(417), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(705), + [sym_attribute_specifier] = STATE(705), + [sym_type_qualifier] = STATE(705), + [sym_storage_class_specifier] = STATE(705), + [anon_sym_volatile] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(836), + [anon_sym_register] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(1670), + [sym_identifier] = ACTIONS(834), + [anon_sym_const] = ACTIONS(836), + [anon_sym_LPAREN2] = ACTIONS(1670), + [anon_sym_COLON] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym__Atomic] = ACTIONS(836), + [anon_sym_auto] = ACTIONS(839), + [anon_sym_inline] = ACTIONS(839), + [anon_sym___attribute__] = ACTIONS(842), }, [706] = { - [anon_sym_LPAREN2] = ACTIONS(2497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(2497), - [anon_sym_COMMA] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_EQ] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), + [aux_sym__declaration_specifiers_repeat1] = STATE(705), + [sym_attribute_specifier] = STATE(705), + [sym_type_qualifier] = STATE(705), + [sym_storage_class_specifier] = STATE(705), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [707] = { - [aux_sym_parameter_list_repeat1] = STATE(993), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(2499), + [sym_pointer_field_declarator] = STATE(1001), + [sym_array_field_declarator] = STATE(1001), + [sym_type_qualifier] = STATE(664), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_function_field_declarator] = STATE(1001), + [sym__field_declarator] = STATE(1001), + [sym_identifier] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1015), }, [708] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(994), - [sym_storage_class_specifier] = STATE(994), - [sym_type_qualifier] = STATE(994), - [anon_sym_LPAREN2] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(804), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2492), + [anon_sym_COLON] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), }, [709] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(995), - [sym_storage_class_specifier] = STATE(995), - [sym_type_qualifier] = STATE(995), - [anon_sym_LPAREN2] = ACTIONS(804), - [sym_identifier] = ACTIONS(806), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(804), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_pointer_field_declarator] = STATE(708), + [sym_array_field_declarator] = STATE(708), + [sym_type_qualifier] = STATE(1002), + [aux_sym_type_definition_repeat1] = STATE(1002), + [sym_function_field_declarator] = STATE(708), + [sym__field_declarator] = STATE(708), + [sym_identifier] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1760), }, [710] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(710), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_long] = ACTIONS(2501), - [anon_sym__Atomic] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_auto] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_inline] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(829), - [sym_identifier] = ACTIONS(829), - [anon_sym_unsigned] = ACTIONS(2501), - [anon_sym_short] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_signed] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_register] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), + [sym_parameter_list] = STATE(717), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1772), }, [711] = { - [sym_macro_type_specifier] = STATE(417), - [sym_abstract_array_declarator] = STATE(421), - [sym__type_specifier] = STATE(417), - [aux_sym__declaration_specifiers_repeat1] = STATE(418), - [sym_sized_type_specifier] = STATE(417), - [sym_parameter_declaration] = STATE(415), - [sym__declarator] = STATE(369), - [sym_abstract_pointer_declarator] = STATE(421), - [sym_array_declarator] = STATE(369), - [sym_storage_class_specifier] = STATE(418), - [sym_type_qualifier] = STATE(418), - [sym_struct_specifier] = STATE(417), - [sym_union_specifier] = STATE(417), - [sym_parameter_list] = STATE(190), - [sym_pointer_declarator] = STATE(369), - [sym_abstract_function_declarator] = STATE(421), - [sym_enum_specifier] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(419), - [sym__declaration_specifiers] = STATE(420), - [sym__abstract_declarator] = STATE(421), - [sym_function_declarator] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(1756), - [sym_identifier] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(11), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [712] = { - [sym__abstract_declarator] = STATE(427), - [sym_function_declarator] = STATE(370), - [sym_abstract_array_declarator] = STATE(427), - [sym_pointer_declarator] = STATE(370), - [sym_parameter_list] = STATE(190), - [sym_abstract_function_declarator] = STATE(427), - [sym__declarator] = STATE(370), - [sym_abstract_pointer_declarator] = STATE(427), - [sym_array_declarator] = STATE(370), - [sym_type_qualifier] = STATE(998), - [aux_sym_type_definition_repeat1] = STATE(998), - [anon_sym_LPAREN2] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(935), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(11), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_signed] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym_auto] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), }, [713] = { - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [sym_pointer_field_declarator] = STATE(1004), + [sym_array_field_declarator] = STATE(1004), + [sym_function_field_declarator] = STATE(1004), + [sym__field_declarator] = STATE(1004), + [sym_identifier] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1017), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(2508), }, [714] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(2508), - }, - [715] = { - [anon_sym_LPAREN2] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2510), - }, - [716] = { - [anon_sym_LPAREN2] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_COMMA] = ACTIONS(2512), + [sym_concatenated_string] = STATE(1008), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1008), + [sym_math_expression] = STATE(1008), + [sym_cast_expression] = STATE(1008), + [sym_type_qualifier] = STATE(1007), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(1007), + [sym_conditional_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1008), + [sym_relational_expression] = STATE(1008), + [sym_shift_expression] = STATE(1008), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1008), + [sym_bitwise_expression] = STATE(1008), + [sym_equality_expression] = STATE(1008), + [sym_sizeof_expression] = STATE(1008), + [sym_compound_literal_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(1008), + [sym_char_literal] = STATE(1008), + [sym_null] = ACTIONS(2502), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2504), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), + }, + [715] = { + [aux_sym_field_declaration_repeat1] = STATE(1010), + [sym_bitfield_clause] = STATE(1011), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(2510), + }, + [716] = { + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2510), }, [717] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2512), + [anon_sym_COMMA] = ACTIONS(2512), + [anon_sym_COLON] = ACTIONS(2512), + [anon_sym_SEMI] = ACTIONS(2512), }, [718] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(2514), + [sym_while_statement] = STATE(1012), + [sym_continue_statement] = STATE(1012), + [sym_goto_statement] = STATE(1012), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1012), + [sym_expression_statement] = STATE(1012), + [sym_if_statement] = STATE(1012), + [sym_do_statement] = STATE(1012), + [sym_for_statement] = STATE(1012), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1012), + [sym_return_statement] = STATE(1012), + [sym_break_statement] = STATE(1012), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1012), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [719] = { - [sym_type_qualifier] = STATE(719), - [aux_sym_type_definition_repeat1] = STATE(719), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1017), - [anon_sym__Atomic] = ACTIONS(1019), - [sym_true] = ACTIONS(1017), - [anon_sym_SQUOTE] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1017), - [sym_null] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [sym_number_literal] = ACTIONS(1778), - [anon_sym_restrict] = ACTIONS(1019), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [sym_false] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_RBRACK] = ACTIONS(1778), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [720] = { - [sym_parameter_list] = STATE(430), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(2516), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [721] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(1001), - [sym_logical_expression] = STATE(1001), - [sym_bitwise_expression] = STATE(1001), - [sym_cast_expression] = STATE(1001), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(1001), - [sym_char_literal] = STATE(1001), - [sym_assignment_expression] = STATE(1001), - [sym_type_qualifier] = STATE(719), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(1001), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(1001), - [aux_sym_type_definition_repeat1] = STATE(719), - [sym_conditional_expression] = STATE(1001), - [sym_equality_expression] = STATE(1001), - [sym_relational_expression] = STATE(1001), - [sym_sizeof_expression] = STATE(1001), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(1001), - [sym_concatenated_string] = STATE(1001), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(2514), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1014), + [sym_math_expression] = STATE(1014), + [sym_cast_expression] = STATE(1014), + [sym_declaration] = STATE(1013), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1014), + [sym_bitwise_expression] = STATE(1014), + [sym_equality_expression] = STATE(1014), + [sym_sizeof_expression] = STATE(1014), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_concatenated_string] = STATE(1014), + [sym_char_literal] = STATE(1014), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1014), + [sym_assignment_expression] = STATE(1014), + [sym_relational_expression] = STATE(1014), + [sym_shift_expression] = STATE(1014), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(2514), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [722] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [723] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1004), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1016), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1016), + [sym_math_expression] = STATE(1016), + [sym_cast_expression] = STATE(1016), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1016), + [sym_assignment_expression] = STATE(1016), + [sym_relational_expression] = STATE(1016), + [sym_shift_expression] = STATE(1016), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1016), + [sym_bitwise_expression] = STATE(1016), + [sym_equality_expression] = STATE(1016), + [sym_sizeof_expression] = STATE(1016), + [sym_compound_literal_expression] = STATE(1016), + [sym_parenthesized_expression] = STATE(1016), + [sym_char_literal] = STATE(1016), + [sym_null] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2522), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2520), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2520), [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [724] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1005), - [sym_logical_expression] = STATE(1005), - [sym_bitwise_expression] = STATE(1005), - [sym_cast_expression] = STATE(1005), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1005), - [sym_char_literal] = STATE(1005), - [sym_assignment_expression] = STATE(1005), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1005), - [sym_math_expression] = STATE(1005), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1005), - [sym_equality_expression] = STATE(1005), - [sym_relational_expression] = STATE(1005), - [sym_sizeof_expression] = STATE(1005), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1005), - [sym_concatenated_string] = STATE(1005), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(2528), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(2524), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [725] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1018), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1018), + [sym_math_expression] = STATE(1018), + [sym_cast_expression] = STATE(1018), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1018), + [sym_assignment_expression] = STATE(1018), + [sym_relational_expression] = STATE(1018), + [sym_shift_expression] = STATE(1018), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1018), + [sym_bitwise_expression] = STATE(1018), + [sym_equality_expression] = STATE(1018), + [sym_sizeof_expression] = STATE(1018), + [sym_compound_literal_expression] = STATE(1018), + [sym_parenthesized_expression] = STATE(1018), + [sym_char_literal] = STATE(1018), + [sym_null] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2528), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(2526), + [sym_true] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [726] = { - [sym_type_qualifier] = STATE(662), - [sym_function_declarator] = STATE(661), - [sym_array_declarator] = STATE(661), - [sym_pointer_declarator] = STATE(661), - [aux_sym_type_definition_repeat1] = STATE(662), - [sym__declarator] = STATE(661), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1628), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1776), }, [727] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(727), - [sym_storage_class_specifier] = STATE(727), - [sym_type_qualifier] = STATE(727), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(813), - [anon_sym_restrict] = ACTIONS(810), - [sym_identifier] = ACTIONS(808), - [anon_sym__Atomic] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_inline] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(813), - [anon_sym_const] = ACTIONS(810), + [sym_concatenated_string] = STATE(1019), + [sym_pointer_expression] = STATE(1019), + [sym_logical_expression] = STATE(1019), + [sym_math_expression] = STATE(1019), + [sym_cast_expression] = STATE(1019), + [sym_field_expression] = STATE(1019), + [sym_conditional_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_relational_expression] = STATE(1019), + [sym_shift_expression] = STATE(1019), + [sym_subscript_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_string_literal] = STATE(73), + [sym__expression] = STATE(1019), + [sym_bitwise_expression] = STATE(1019), + [sym_equality_expression] = STATE(1019), + [sym_sizeof_expression] = STATE(1019), + [sym_compound_literal_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_char_literal] = STATE(1019), + [sym_null] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(137), + [sym_number_literal] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(145), + [anon_sym_AMP] = ACTIONS(31), + [sym_false] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(143), + [sym_true] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_sizeof] = ACTIONS(149), }, [728] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(727), - [sym_storage_class_specifier] = STATE(727), - [sym_type_qualifier] = STATE(727), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_null] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(977), + [aux_sym_preproc_if_token2] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym__Atomic] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [sym_number_literal] = ACTIONS(979), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [aux_sym_preproc_elif_token1] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_sizeof] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [aux_sym_preproc_else_token1] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(979), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_else] = ACTIONS(977), + [sym_true] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_static] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_if] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [sym_identifier] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), }, [729] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_parenthesized_expression] = STATE(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2538), }, [730] = { - [anon_sym_DASH_DASH] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1053), - [aux_sym_preproc_if_token2] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_signed] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_sizeof] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsigned] = ACTIONS(1053), - [anon_sym_short] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1053), - [aux_sym_preproc_elif_token1] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_primitive_type] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [aux_sym_preproc_else_token1] = ACTIONS(1053), - [sym_preproc_directive] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1053), - [anon_sym_auto] = ACTIONS(1053), - [anon_sym_inline] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1053), - [anon_sym_register] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), + [sym_null] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1054), + [aux_sym_preproc_if_token2] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [sym_number_literal] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [aux_sym_preproc_elif_token1] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [aux_sym_preproc_else_token1] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1054), + [sym_true] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), }, [731] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1008), - [sym_logical_expression] = STATE(1008), - [sym_bitwise_expression] = STATE(1008), - [sym_cast_expression] = STATE(1008), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1008), - [sym_char_literal] = STATE(1008), - [sym_assignment_expression] = STATE(1008), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1008), - [sym_math_expression] = STATE(1008), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1008), - [sym_equality_expression] = STATE(1008), - [sym_relational_expression] = STATE(1008), - [sym_sizeof_expression] = STATE(1008), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1008), - [sym_concatenated_string] = STATE(1008), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2534), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2536), - [sym_false] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_union] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(340), + [anon_sym_unsigned] = ACTIONS(340), + [anon_sym_volatile] = ACTIONS(340), + [anon_sym_short] = ACTIONS(340), + [anon_sym_DQUOTE] = ACTIONS(342), + [sym_null] = ACTIONS(340), + [sym_identifier] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [anon_sym_goto] = ACTIONS(340), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(340), + [sym_preproc_directive] = ACTIONS(340), + [anon_sym_AMP] = ACTIONS(342), + [aux_sym_preproc_if_token1] = ACTIONS(340), + [anon_sym_TILDE] = ACTIONS(342), + [anon_sym_const] = ACTIONS(340), + [anon_sym_LPAREN2] = ACTIONS(342), + [anon_sym_typedef] = ACTIONS(340), + [anon_sym_DASH_DASH] = ACTIONS(342), + [anon_sym_else] = ACTIONS(340), + [anon_sym__Atomic] = ACTIONS(340), + [sym_primitive_type] = ACTIONS(340), + [sym_true] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_break] = ACTIONS(340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(340), + [aux_sym_preproc_include_token1] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_static] = ACTIONS(340), + [anon_sym_restrict] = ACTIONS(340), + [anon_sym_register] = ACTIONS(340), + [anon_sym_extern] = ACTIONS(340), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_if] = ACTIONS(340), + [anon_sym_struct] = ACTIONS(340), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_signed] = ACTIONS(340), + [anon_sym_enum] = ACTIONS(340), + [anon_sym_long] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(342), + [anon_sym_return] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_continue] = ACTIONS(340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(340), + [anon_sym_SEMI] = ACTIONS(342), + [sym_number_literal] = ACTIONS(342), + [aux_sym_preproc_def_token1] = ACTIONS(340), + [sym_false] = ACTIONS(340), + [anon_sym_auto] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(342), + [anon_sym_inline] = ACTIONS(340), + [anon_sym___attribute__] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(340), }, [732] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [733] = { - [sym_do_statement] = STATE(1011), - [sym_goto_statement] = STATE(1011), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1011), - [sym_switch_statement] = STATE(1011), - [sym_for_statement] = STATE(1011), - [sym_return_statement] = STATE(1011), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1011), - [sym_continue_statement] = STATE(1011), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1011), - [sym_labeled_statement] = STATE(1011), - [sym_expression_statement] = STATE(1011), - [sym_while_statement] = STATE(1011), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), }, [734] = { - [sym__expression] = STATE(1013), - [sym_logical_expression] = STATE(1013), - [sym_bitwise_expression] = STATE(1013), - [sym_cast_expression] = STATE(1013), - [sym_declaration] = STATE(1012), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1013), - [sym_char_literal] = STATE(1013), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1013), - [sym_equality_expression] = STATE(1013), - [sym_relational_expression] = STATE(1013), - [sym_sizeof_expression] = STATE(1013), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1013), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1013), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1013), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1013), - [sym_math_expression] = STATE(1013), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(2542), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2544), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(2542), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2544), }, [735] = { - [anon_sym_LPAREN2] = ACTIONS(432), - [anon_sym_DASH_DASH] = ACTIONS(432), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [sym_true] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [aux_sym_preproc_if_token2] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_typedef] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(432), - [sym_number_literal] = ACTIONS(432), - [anon_sym_return] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [aux_sym_preproc_include_token1] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_sizeof] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_unsigned] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(432), - [sym_null] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_do] = ACTIONS(434), - [anon_sym_goto] = ACTIONS(434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_register] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_union] = ACTIONS(398), + [anon_sym_sizeof] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_null] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [anon_sym_do] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(396), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_const] = ACTIONS(398), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym__Atomic] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [sym_true] = ACTIONS(398), + [anon_sym_for] = ACTIONS(398), + [anon_sym_break] = ACTIONS(398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [aux_sym_preproc_include_token1] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_static] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_if] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_switch] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_PLUS_PLUS] = ACTIONS(396), + [anon_sym_return] = ACTIONS(398), + [anon_sym_while] = ACTIONS(398), + [anon_sym_continue] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [anon_sym_SEMI] = ACTIONS(396), + [sym_number_literal] = ACTIONS(396), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_inline] = ACTIONS(398), + [anon_sym___attribute__] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), }, [736] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2548), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2546), }, [737] = { - [sym_goto_statement] = STATE(1017), - [sym_preproc_function_def] = STATE(1017), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1016), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(1017), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(1017), - [sym_return_statement] = STATE(1017), + [sym_continue_statement] = STATE(1028), + [sym_preproc_function_def] = STATE(1028), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1027), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(1028), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(1028), + [sym_for_statement] = STATE(1028), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(1028), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(1028), + [sym_return_statement] = STATE(1028), + [sym_preproc_include] = STATE(1028), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(1028), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(1017), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1017), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(1017), - [sym_preproc_include] = STATE(1017), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(1017), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(1017), - [sym_do_statement] = STATE(1017), - [sym_preproc_def] = STATE(1017), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(1028), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(1028), + [sym_while_statement] = STATE(1028), + [sym_preproc_def] = STATE(1028), + [sym_goto_statement] = STATE(1028), + [sym_preproc_else] = STATE(1027), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(1028), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1028), + [sym_expression_statement] = STATE(1028), + [sym_do_statement] = STATE(1028), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1016), + [sym_preproc_call] = STATE(1028), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(1017), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(1017), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(1017), - [sym_for_statement] = STATE(1017), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(1017), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(1017), - [sym_preproc_if] = STATE(1017), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(1017), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(1017), - [sym_while_statement] = STATE(1017), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(2550), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym__empty_declaration] = STATE(1028), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(1028), + [sym_preproc_if] = STATE(1028), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(1028), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [738] = { - [sym_union_specifier] = STATE(1018), - [sym_macro_type_specifier] = STATE(1018), - [sym_struct_specifier] = STATE(1018), - [sym__type_specifier] = STATE(1018), - [sym_sized_type_specifier] = STATE(1018), - [sym_enum_specifier] = STATE(1018), - [aux_sym_sized_type_specifier_repeat1] = STATE(71), - [aux_sym_type_definition_repeat1] = STATE(183), - [sym_type_qualifier] = STATE(183), - [anon_sym_short] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(155), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_signed] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_union] = ACTIONS(59), - [anon_sym_const] = ACTIONS(11), - [anon_sym_unsigned] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(63), + [sym_struct_specifier] = STATE(1029), + [sym_macro_type_specifier] = STATE(1029), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [sym_union_specifier] = STATE(1029), + [sym__type_specifier] = STATE(1029), + [sym_sized_type_specifier] = STATE(1029), + [sym_enum_specifier] = STATE(1029), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(177), + [anon_sym_union] = ACTIONS(7), + [anon_sym_const] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(179), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_long] = ACTIONS(179), + [anon_sym_short] = ACTIONS(179), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(2550), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(63), }, [739] = { - [sym_pointer_type_declarator] = STATE(1019), - [sym_array_type_declarator] = STATE(1019), - [sym_function_type_declarator] = STATE(1019), - [sym__type_declarator] = STATE(1019), - [anon_sym_LPAREN2] = ACTIONS(495), + [sym_array_type_declarator] = STATE(1030), + [sym_pointer_type_declarator] = STATE(1030), + [sym_function_type_declarator] = STATE(1030), + [sym__type_declarator] = STATE(1030), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), }, [740] = { - [sym_do_statement] = STATE(1024), - [sym_goto_statement] = STATE(1024), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1024), - [sym_switch_statement] = STATE(1024), - [sym_for_statement] = STATE(1024), - [sym_return_statement] = STATE(1024), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1024), - [sym_continue_statement] = STATE(1024), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1024), - [sym_labeled_statement] = STATE(1024), - [sym_expression_statement] = STATE(1024), - [sym_while_statement] = STATE(1024), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1032), + [sym_math_expression] = STATE(1032), + [sym_cast_expression] = STATE(1032), + [sym_declaration] = STATE(1031), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1032), + [sym_bitwise_expression] = STATE(1032), + [sym_equality_expression] = STATE(1032), + [sym_sizeof_expression] = STATE(1032), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1032), + [sym_parenthesized_expression] = STATE(1032), + [sym_concatenated_string] = STATE(1032), + [sym_char_literal] = STATE(1032), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1032), + [sym_assignment_expression] = STATE(1032), + [sym_relational_expression] = STATE(1032), + [sym_shift_expression] = STATE(1032), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(2552), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [741] = { - [sym_do_statement] = STATE(1025), - [sym_goto_statement] = STATE(1025), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1025), - [sym_switch_statement] = STATE(1025), - [sym_for_statement] = STATE(1025), - [sym_return_statement] = STATE(1025), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1025), - [sym_continue_statement] = STATE(1025), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1025), - [sym_labeled_statement] = STATE(1025), - [sym_expression_statement] = STATE(1025), - [sym_while_statement] = STATE(1025), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_union] = ACTIONS(563), + [anon_sym_sizeof] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(565), + [sym_null] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [aux_sym_preproc_if_token1] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_const] = ACTIONS(563), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_else] = ACTIONS(563), + [anon_sym__Atomic] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(563), + [aux_sym_preproc_include_token1] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_static] = ACTIONS(563), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_if] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_signed] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_return] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(565), + [sym_number_literal] = ACTIONS(565), + [aux_sym_preproc_def_token1] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_inline] = ACTIONS(563), + [anon_sym___attribute__] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), }, [742] = { - [sym_switch_body] = STATE(1027), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2562), + [sym_continue_statement] = STATE(1035), + [sym_preproc_function_def] = STATE(1035), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1034), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(1035), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(1035), + [sym_for_statement] = STATE(1035), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(1035), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(1035), + [sym_return_statement] = STATE(1035), + [sym_preproc_include] = STATE(1035), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(1035), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(1035), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(1035), + [sym_while_statement] = STATE(1035), + [sym_preproc_def] = STATE(1035), + [sym_goto_statement] = STATE(1035), + [sym_preproc_else] = STATE(1034), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(1035), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1035), + [sym_expression_statement] = STATE(1035), + [sym_do_statement] = STATE(1035), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(1035), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(1035), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(1035), + [sym_preproc_if] = STATE(1035), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(1035), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [743] = { - [anon_sym_LPAREN2] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_long] = ACTIONS(569), - [anon_sym__Atomic] = ACTIONS(569), - [sym_primitive_type] = ACTIONS(569), - [sym_true] = ACTIONS(569), - [sym_identifier] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(569), - [sym_preproc_directive] = ACTIONS(569), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_restrict] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_typedef] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_if] = ACTIONS(569), - [anon_sym_while] = ACTIONS(569), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_signed] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [sym_number_literal] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [sym_false] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(569), - [aux_sym_preproc_include_token1] = ACTIONS(569), - [anon_sym_auto] = ACTIONS(569), - [anon_sym_volatile] = ACTIONS(569), - [anon_sym_inline] = ACTIONS(569), - [anon_sym_extern] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_sizeof] = ACTIONS(569), - [anon_sym_union] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_unsigned] = ACTIONS(569), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_short] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [sym_null] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_do] = ACTIONS(569), - [anon_sym_goto] = ACTIONS(569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_register] = ACTIONS(569), - [anon_sym_else] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_union] = ACTIONS(571), + [anon_sym_sizeof] = ACTIONS(571), + [anon_sym_unsigned] = ACTIONS(571), + [anon_sym_volatile] = ACTIONS(571), + [anon_sym_short] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_null] = ACTIONS(571), + [sym_identifier] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(571), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(571), + [sym_preproc_directive] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_preproc_if_token1] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(569), + [anon_sym_typedef] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(569), + [anon_sym__Atomic] = ACTIONS(571), + [sym_primitive_type] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(571), + [aux_sym_preproc_include_token1] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_restrict] = ACTIONS(571), + [anon_sym_register] = ACTIONS(571), + [anon_sym_extern] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_signed] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [anon_sym_long] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_return] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(569), + [sym_number_literal] = ACTIONS(569), + [aux_sym_preproc_def_token1] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [anon_sym_auto] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_inline] = ACTIONS(571), + [anon_sym___attribute__] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), }, [744] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_string_literal_repeat1] = STATE(1037), + [aux_sym_string_literal_token1] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2562), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(2560), }, [745] = { - [anon_sym_LPAREN2] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_long] = ACTIONS(601), - [anon_sym__Atomic] = ACTIONS(601), - [sym_primitive_type] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_identifier] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [aux_sym_preproc_if_token2] = ACTIONS(601), - [sym_preproc_directive] = ACTIONS(601), - [aux_sym_preproc_if_token1] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_static] = ACTIONS(601), - [anon_sym_restrict] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_typedef] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_if] = ACTIONS(601), - [anon_sym_while] = ACTIONS(601), - [anon_sym_switch] = ACTIONS(601), - [anon_sym_signed] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [sym_number_literal] = ACTIONS(599), - [anon_sym_return] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(601), - [aux_sym_preproc_include_token1] = ACTIONS(601), - [anon_sym_auto] = ACTIONS(601), - [anon_sym_volatile] = ACTIONS(601), - [anon_sym_inline] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_sizeof] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_unsigned] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_short] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(599), - [sym_null] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_do] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(599), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(599), - [anon_sym_register] = ACTIONS(601), - [anon_sym_else] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_function_definition] = STATE(1039), + [sym_declaration_list] = STATE(1039), + [sym_declaration] = STATE(1039), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_attribute_specifier] = STATE(277), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [sym__declaration_specifiers] = STATE(1040), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(553), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [746] = { - [sym_goto_statement] = STATE(1031), - [sym_preproc_function_def] = STATE(1031), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1030), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(1031), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(1031), - [sym_return_statement] = STATE(1031), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(1031), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1031), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(1031), - [sym_preproc_include] = STATE(1031), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(1031), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1031), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(1031), - [sym_do_statement] = STATE(1031), - [sym_preproc_def] = STATE(1031), - [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1030), - [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(1031), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(1031), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(1031), - [sym_for_statement] = STATE(1031), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(1031), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(1031), - [sym_preproc_if] = STATE(1031), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(1031), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(1031), - [sym_while_statement] = STATE(1031), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(2566), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_while_statement] = STATE(1045), + [sym_continue_statement] = STATE(1045), + [sym_goto_statement] = STATE(1045), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1045), + [sym_expression_statement] = STATE(1045), + [sym_if_statement] = STATE(1045), + [sym_do_statement] = STATE(1045), + [sym_for_statement] = STATE(1045), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1045), + [sym_return_statement] = STATE(1045), + [sym_break_statement] = STATE(1045), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1045), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [747] = { - [aux_sym_string_literal_repeat1] = STATE(1033), - [anon_sym_DQUOTE] = ACTIONS(2568), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(2570), - [aux_sym_string_literal_token1] = ACTIONS(2570), + [sym_switch_body] = STATE(1047), + [anon_sym_LBRACE] = ACTIONS(2574), + [sym_comment] = ACTIONS(3), }, [748] = { - [anon_sym_LPAREN2] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_long] = ACTIONS(611), - [anon_sym__Atomic] = ACTIONS(611), - [sym_primitive_type] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_identifier] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [aux_sym_preproc_if_token2] = ACTIONS(611), - [sym_preproc_directive] = ACTIONS(611), - [aux_sym_preproc_if_token1] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_static] = ACTIONS(611), - [anon_sym_restrict] = ACTIONS(611), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_typedef] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_if] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_signed] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [sym_number_literal] = ACTIONS(609), - [anon_sym_return] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(611), - [aux_sym_preproc_include_token1] = ACTIONS(611), - [anon_sym_auto] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_inline] = ACTIONS(611), - [anon_sym_extern] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_sizeof] = ACTIONS(611), - [anon_sym_union] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(609), - [anon_sym_unsigned] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(609), - [sym_null] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_goto] = ACTIONS(611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_register] = ACTIONS(611), - [anon_sym_const] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), + [sym_while_statement] = STATE(1049), + [sym_continue_statement] = STATE(1049), + [sym_goto_statement] = STATE(1049), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1049), + [sym_expression_statement] = STATE(1049), + [sym_if_statement] = STATE(1049), + [sym_do_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1049), + [sym_return_statement] = STATE(1049), + [sym_break_statement] = STATE(1049), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1049), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [749] = { - [sym_union_specifier] = STATE(201), - [sym_macro_type_specifier] = STATE(201), - [sym_declaration_list] = STATE(1035), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_function_definition] = STATE(1035), - [sym_declaration] = STATE(1035), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym__declaration_specifiers] = STATE(1036), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(426), - [anon_sym_union] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_short] = ACTIONS(426), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_union] = ACTIONS(641), + [anon_sym_sizeof] = ACTIONS(641), + [anon_sym_unsigned] = ACTIONS(641), + [anon_sym_volatile] = ACTIONS(641), + [anon_sym_short] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(643), + [sym_null] = ACTIONS(641), + [sym_identifier] = ACTIONS(641), + [anon_sym_do] = ACTIONS(641), + [anon_sym_goto] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(641), + [sym_preproc_directive] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), + [aux_sym_preproc_if_token1] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_const] = ACTIONS(641), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_typedef] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(643), + [anon_sym_else] = ACTIONS(641), + [anon_sym__Atomic] = ACTIONS(641), + [sym_primitive_type] = ACTIONS(641), + [sym_true] = ACTIONS(641), + [anon_sym_for] = ACTIONS(641), + [anon_sym_break] = ACTIONS(641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(641), + [aux_sym_preproc_include_token1] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_static] = ACTIONS(641), + [anon_sym_restrict] = ACTIONS(641), + [anon_sym_register] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_if] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(641), + [anon_sym_switch] = ACTIONS(641), + [anon_sym_signed] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(641), + [anon_sym_long] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(643), + [anon_sym_return] = ACTIONS(641), + [anon_sym_while] = ACTIONS(641), + [anon_sym_continue] = ACTIONS(641), + [aux_sym_preproc_ifdef_token2] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(643), + [sym_number_literal] = ACTIONS(643), + [aux_sym_preproc_def_token1] = ACTIONS(641), + [sym_false] = ACTIONS(641), + [anon_sym_auto] = ACTIONS(641), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(641), + [anon_sym___attribute__] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), }, [750] = { - [anon_sym_LPAREN2] = ACTIONS(659), - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_long] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [sym_primitive_type] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_identifier] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [aux_sym_preproc_if_token2] = ACTIONS(661), - [sym_preproc_directive] = ACTIONS(661), - [aux_sym_preproc_if_token1] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_static] = ACTIONS(661), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_typedef] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_if] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [sym_number_literal] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(661), - [aux_sym_preproc_include_token1] = ACTIONS(661), - [anon_sym_auto] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_inline] = ACTIONS(661), - [anon_sym_extern] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_DOT] = ACTIONS(316), [anon_sym_DASH] = ACTIONS(661), - [anon_sym_sizeof] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(659), - [anon_sym_unsigned] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(659), - [sym_null] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_goto] = ACTIONS(661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_register] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(326), }, [751] = { - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(2574), + [sym_while_statement] = STATE(1051), + [sym_continue_statement] = STATE(1051), + [sym_goto_statement] = STATE(1051), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1051), + [sym_expression_statement] = STATE(1051), + [sym_if_statement] = STATE(1051), + [sym_do_statement] = STATE(1051), + [sym_for_statement] = STATE(1051), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1051), + [sym_return_statement] = STATE(1051), + [sym_break_statement] = STATE(1051), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1051), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [752] = { + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_union] = ACTIONS(679), + [anon_sym_sizeof] = ACTIONS(679), + [anon_sym_unsigned] = ACTIONS(679), + [anon_sym_volatile] = ACTIONS(679), + [anon_sym_short] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(681), + [sym_null] = ACTIONS(679), + [sym_identifier] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_goto] = ACTIONS(679), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2576), - }, - [753] = { - [sym_preproc_params] = STATE(1041), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(2580), - }, - [754] = { + [aux_sym_preproc_if_token2] = ACTIONS(679), + [sym_preproc_directive] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + [aux_sym_preproc_if_token1] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_const] = ACTIONS(679), [anon_sym_LPAREN2] = ACTIONS(681), + [anon_sym_typedef] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_long] = ACTIONS(683), - [anon_sym__Atomic] = ACTIONS(683), - [sym_primitive_type] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_identifier] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [aux_sym_preproc_if_token2] = ACTIONS(683), - [sym_preproc_directive] = ACTIONS(683), - [aux_sym_preproc_if_token1] = ACTIONS(683), + [anon_sym_else] = ACTIONS(679), + [anon_sym__Atomic] = ACTIONS(679), + [sym_primitive_type] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [aux_sym_preproc_ifdef_token1] = ACTIONS(679), + [aux_sym_preproc_include_token1] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(681), - [anon_sym_static] = ACTIONS(683), - [anon_sym_restrict] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_typedef] = ACTIONS(683), + [anon_sym_static] = ACTIONS(679), + [anon_sym_restrict] = ACTIONS(679), + [anon_sym_register] = ACTIONS(679), + [anon_sym_extern] = ACTIONS(679), [anon_sym_STAR] = ACTIONS(681), - [anon_sym_if] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_signed] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_if] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_signed] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_long] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(679), [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_return] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [aux_sym_preproc_ifdef_token2] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), [sym_number_literal] = ACTIONS(681), - [anon_sym_return] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(683), - [aux_sym_preproc_include_token1] = ACTIONS(683), - [anon_sym_auto] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_inline] = ACTIONS(683), - [anon_sym_extern] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_sizeof] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), + [aux_sym_preproc_def_token1] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [anon_sym_auto] = ACTIONS(679), [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_unsigned] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_null] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_goto] = ACTIONS(683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_register] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_inline] = ACTIONS(679), + [anon_sym___attribute__] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + }, + [753] = { + [sym_preproc_params] = STATE(1054), + [sym_preproc_arg] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2582), + }, + [754] = { + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_union] = ACTIONS(706), + [anon_sym_sizeof] = ACTIONS(706), + [anon_sym_unsigned] = ACTIONS(706), + [anon_sym_volatile] = ACTIONS(706), + [anon_sym_short] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(708), + [sym_null] = ACTIONS(706), + [sym_identifier] = ACTIONS(706), + [anon_sym_do] = ACTIONS(706), + [anon_sym_goto] = ACTIONS(706), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(706), + [sym_preproc_directive] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [aux_sym_preproc_if_token1] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_const] = ACTIONS(706), + [anon_sym_LPAREN2] = ACTIONS(708), + [anon_sym_typedef] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(708), + [anon_sym_else] = ACTIONS(706), + [anon_sym__Atomic] = ACTIONS(706), + [sym_primitive_type] = ACTIONS(706), + [sym_true] = ACTIONS(706), + [anon_sym_for] = ACTIONS(706), + [anon_sym_break] = ACTIONS(706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(706), + [aux_sym_preproc_include_token1] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_static] = ACTIONS(706), + [anon_sym_restrict] = ACTIONS(706), + [anon_sym_register] = ACTIONS(706), + [anon_sym_extern] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_if] = ACTIONS(706), + [anon_sym_struct] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(706), + [anon_sym_signed] = ACTIONS(706), + [anon_sym_enum] = ACTIONS(706), + [anon_sym_long] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_return] = ACTIONS(706), + [anon_sym_while] = ACTIONS(706), + [anon_sym_continue] = ACTIONS(706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(708), + [sym_number_literal] = ACTIONS(708), + [aux_sym_preproc_def_token1] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [anon_sym_auto] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_inline] = ACTIONS(706), + [anon_sym___attribute__] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), }, [755] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2582), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_continue_statement] = STATE(755), + [sym_preproc_function_def] = STATE(755), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(457), + [sym_declaration] = STATE(755), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(755), + [sym_for_statement] = STATE(755), + [sym_comma_expression] = STATE(455), + [sym_equality_expression] = STATE(457), + [sym_type_definition] = STATE(755), + [sym_sizeof_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(755), + [sym_return_statement] = STATE(755), + [sym_preproc_include] = STATE(755), + [sym_conditional_expression] = STATE(457), + [sym_preproc_ifdef] = STATE(755), + [sym_relational_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(755), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(755), + [sym_while_statement] = STATE(755), + [sym_preproc_def] = STATE(755), + [sym_goto_statement] = STATE(755), + [sym_logical_expression] = STATE(457), + [sym_function_definition] = STATE(755), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(755), + [sym_expression_statement] = STATE(755), + [sym_do_statement] = STATE(755), + [sym__expression] = STATE(457), + [sym_preproc_call] = STATE(755), + [sym_bitwise_expression] = STATE(457), + [sym__declaration_specifiers] = STATE(458), + [sym_compound_literal_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym__empty_declaration] = STATE(755), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(755), + [sym_preproc_if] = STATE(755), + [sym_assignment_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_linkage_specification] = STATE(755), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_union] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym_unsigned] = ACTIONS(723), + [anon_sym_volatile] = ACTIONS(726), + [anon_sym_short] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_null] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_goto] = ACTIONS(2596), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1926), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(752), + [aux_sym_preproc_if_token1] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_const] = ACTIONS(726), + [anon_sym_LPAREN2] = ACTIONS(758), + [anon_sym_typedef] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym__Atomic] = ACTIONS(726), + [sym_primitive_type] = ACTIONS(767), + [sym_true] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), + [aux_sym_preproc_include_token1] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_static] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(726), + [anon_sym_register] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(723), + [anon_sym_enum] = ACTIONS(800), + [anon_sym_long] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2638), + [sym_number_literal] = ACTIONS(2641), + [aux_sym_preproc_def_token1] = ACTIONS(2644), + [sym_false] = ACTIONS(2587), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_inline] = ACTIONS(785), + [anon_sym___attribute__] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(803), }, [756] = { - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_long] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [sym_true] = ACTIONS(915), - [sym_identifier] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [aux_sym_preproc_if_token2] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [aux_sym_preproc_if_token1] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [sym_number_literal] = ACTIONS(913), - [anon_sym_return] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [aux_sym_preproc_ifdef_token1] = ACTIONS(915), - [aux_sym_preproc_include_token1] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_sizeof] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_null] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_register] = ACTIONS(915), - [anon_sym_else] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_sizeof] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_null] = ACTIONS(949), + [sym_identifier] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(949), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_const] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym__Atomic] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_if] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_return] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [sym_number_literal] = ACTIONS(947), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_inline] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), }, [757] = { - [anon_sym_LPAREN2] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_long] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_identifier] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [aux_sym_preproc_if_token2] = ACTIONS(939), - [sym_preproc_directive] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_static] = ACTIONS(939), - [anon_sym_restrict] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_if] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_signed] = ACTIONS(939), - [anon_sym_enum] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [sym_number_literal] = ACTIONS(937), - [anon_sym_return] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(939), - [anon_sym_auto] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(939), - [anon_sym_inline] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_sizeof] = ACTIONS(939), - [anon_sym_union] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_short] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym_null] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_goto] = ACTIONS(939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_register] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(937), + [sym_compound_statement] = STATE(1056), + [aux_sym_declaration_repeat1] = STATE(1057), + [sym_parameter_list] = STATE(381), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2647), }, [758] = { - [sym_compound_statement] = STATE(1044), - [aux_sym_declaration_repeat1] = STATE(1045), - [sym_parameter_list] = STATE(379), - [anon_sym_LPAREN2] = ACTIONS(941), + [aux_sym_declaration_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2647), }, [759] = { - [aux_sym_declaration_repeat1] = STATE(1045), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(2584), + [sym_null] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_elif_token1] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [aux_sym_preproc_else_token1] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1058), + [sym_true] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), }, [760] = { - [sym_do_statement] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_preproc_function_def] = STATE(760), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_function_definition] = STATE(760), - [sym_char_literal] = STATE(461), - [sym_declaration] = STATE(760), - [sym_goto_statement] = STATE(760), - [sym__empty_declaration] = STATE(760), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(760), - [sym_switch_statement] = STATE(760), - [sym_for_statement] = STATE(760), - [sym_return_statement] = STATE(760), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym__declaration_specifiers] = STATE(463), - [sym_parenthesized_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(760), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(760), - [aux_sym_translation_unit_repeat1] = STATE(760), - [sym_break_statement] = STATE(760), - [sym_preproc_include] = STATE(760), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(760), - [sym_preproc_ifdef] = STATE(760), - [sym_linkage_specification] = STATE(760), - [sym_continue_statement] = STATE(760), - [sym_compound_statement] = STATE(760), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(760), - [sym_expression_statement] = STATE(760), - [sym_while_statement] = STATE(760), - [anon_sym_LPAREN2] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_long] = ACTIONS(697), - [anon_sym__Atomic] = ACTIONS(700), - [sym_primitive_type] = ACTIONS(703), - [sym_true] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2592), - [aux_sym_preproc_if_token2] = ACTIONS(1907), - [sym_preproc_directive] = ACTIONS(2595), - [aux_sym_preproc_if_token1] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_static] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2604), - [anon_sym_while] = ACTIONS(2607), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [sym_number_literal] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2616), - [sym_false] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2622), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_sizeof] = ACTIONS(769), - [anon_sym_union] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_unsigned] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(778), - [anon_sym_short] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_null] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2640), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(733), - [anon_sym_register] = ACTIONS(724), - [anon_sym_const] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(2646), + [sym_null] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1166), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym__Atomic] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [sym_number_literal] = ACTIONS(1164), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [aux_sym_preproc_elif_token1] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [aux_sym_preproc_else_token1] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1164), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1164), + [sym_true] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), }, [761] = { - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [aux_sym_preproc_else_token1] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1073), - [sym_null] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_preproc_elif_token1] = ACTIONS(1075), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_register] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), - }, - [762] = { - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [aux_sym_preproc_else_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_null] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [aux_sym_preproc_elif_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), - }, - [763] = { [aux_sym_preproc_if_token2] = ACTIONS(2649), [sym_comment] = ACTIONS(3), }, - [764] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1047), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), + [762] = { + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1059), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(1059), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1047), + [sym_preproc_call] = STATE(482), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), [aux_sym_preproc_if_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, - [765] = { - [sym_pointer_type_declarator] = STATE(1048), - [sym_array_type_declarator] = STATE(1048), - [sym_function_type_declarator] = STATE(1048), - [sym__type_declarator] = STATE(1048), - [anon_sym_LPAREN2] = ACTIONS(495), + [763] = { + [sym_array_type_declarator] = STATE(1060), + [sym_pointer_type_declarator] = STATE(1060), + [sym_function_type_declarator] = STATE(1060), + [sym__type_declarator] = STATE(1060), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), }, - [766] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(1050), - [anon_sym_LPAREN2] = ACTIONS(941), + [764] = { + [aux_sym_type_definition_repeat2] = STATE(1062), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), [anon_sym_SEMI] = ACTIONS(2653), }, + [765] = { + [sym_concatenated_string] = STATE(1064), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1064), + [sym_math_expression] = STATE(1064), + [sym_cast_expression] = STATE(1064), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1064), + [sym_assignment_expression] = STATE(1064), + [sym_relational_expression] = STATE(1064), + [sym_shift_expression] = STATE(1064), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1064), + [sym_bitwise_expression] = STATE(1064), + [sym_equality_expression] = STATE(1064), + [sym_sizeof_expression] = STATE(1064), + [sym_compound_literal_expression] = STATE(1064), + [sym_parenthesized_expression] = STATE(1064), + [sym_char_literal] = STATE(1064), + [sym_null] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2655), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(2659), + [sym_true] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), + }, + [766] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), + }, [767] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_null] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [aux_sym_preproc_elif_token1] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [aux_sym_preproc_else_token1] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1333), + [sym_true] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), }, [768] = { - [anon_sym_LPAREN2] = ACTIONS(2657), + [aux_sym_preproc_if_token2] = ACTIONS(2663), [sym_comment] = ACTIONS(3), }, [769] = { - [sym_parenthesized_expression] = STATE(1053), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1067), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(1067), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(482), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [770] = { - [sym_parenthesized_expression] = STATE(1054), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(376), + [anon_sym_volatile] = ACTIONS(376), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(376), + [aux_sym_preproc_if_token2] = ACTIONS(376), + [anon_sym_const] = ACTIONS(376), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym__Atomic] = ACTIONS(376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [sym_number_literal] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_struct] = ACTIONS(376), + [anon_sym_signed] = ACTIONS(376), + [anon_sym_long] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [aux_sym_preproc_elif_token1] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym___attribute__] = ACTIONS(376), + [anon_sym_sizeof] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_union] = ACTIONS(376), + [anon_sym_unsigned] = ACTIONS(376), + [anon_sym_short] = ACTIONS(376), + [anon_sym_do] = ACTIONS(376), + [aux_sym_preproc_else_token1] = ACTIONS(376), + [anon_sym_TILDE] = ACTIONS(378), + [sym_preproc_directive] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(378), + [aux_sym_preproc_if_token1] = ACTIONS(376), + [anon_sym_LPAREN2] = ACTIONS(378), + [sym_true] = ACTIONS(376), + [sym_primitive_type] = ACTIONS(376), + [anon_sym_for] = ACTIONS(376), + [anon_sym_break] = ACTIONS(376), + [aux_sym_preproc_include_token1] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_static] = ACTIONS(376), + [anon_sym_register] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(378), + [anon_sym_if] = ACTIONS(376), + [anon_sym_switch] = ACTIONS(376), + [sym_false] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [sym_identifier] = ACTIONS(376), + [anon_sym_return] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(378), + [aux_sym_preproc_def_token1] = ACTIONS(376), + [anon_sym_auto] = ACTIONS(376), + [anon_sym_inline] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), }, [771] = { - [anon_sym_DASH_DASH] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(2659), - [sym_null] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), + [aux_sym_string_literal_repeat1] = STATE(180), + [aux_sym_string_literal_token1] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(380), }, [772] = { - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [aux_sym_preproc_elif_token1] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1248), - [sym_true] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [aux_sym_preproc_else_token1] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [sym_null] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), + [sym_continue_statement] = STATE(1070), + [sym_preproc_function_def] = STATE(1070), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(1070), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(1070), + [sym_for_statement] = STATE(1070), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1070), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(1070), + [sym_return_statement] = STATE(1070), + [sym_preproc_include] = STATE(1070), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(1070), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(1070), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(1070), + [sym_while_statement] = STATE(1070), + [sym_preproc_def] = STATE(1070), + [sym_goto_statement] = STATE(1070), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(1070), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1070), + [sym_expression_statement] = STATE(1070), + [sym_do_statement] = STATE(1070), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(1070), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(1070), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(1070), + [sym_preproc_if] = STATE(1070), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(1070), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [773] = { - [sym_do_statement] = STATE(1057), - [sym_goto_statement] = STATE(1057), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1057), - [sym_switch_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_return_statement] = STATE(1057), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(1057), - [sym_case_statement] = STATE(1057), - [sym_break_statement] = STATE(1057), - [sym_continue_statement] = STATE(1057), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1057), - [sym_labeled_statement] = STATE(1057), - [sym_expression_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [aux_sym_preproc_elif_token1] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [aux_sym_preproc_else_token1] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1345), + [sym_true] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), }, [774] = { - [anon_sym_DASH_DASH] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [aux_sym_preproc_if_token2] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [aux_sym_preproc_elif_token1] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1266), - [sym_true] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [aux_sym_preproc_else_token1] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [sym_null] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), + [sym_function_declarator] = STATE(484), + [sym__declarator] = STATE(484), + [sym_init_declarator] = STATE(485), + [sym_pointer_declarator] = STATE(484), + [sym_array_declarator] = STATE(484), + [sym_identifier] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), + [sym_comment] = ACTIONS(3), }, [775] = { - [anon_sym_DASH_DASH] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1338), - [sym_true] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), + [sym_parenthesized_expression] = STATE(1071), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [776] = { - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [sym_true] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_null] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(2671), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [777] = { - [aux_sym_preproc_if_token2] = ACTIONS(2663), + [sym_parenthesized_expression] = STATE(1073), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [778] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1059), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), - [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1059), - [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2673), }, [779] = { - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_long] = ACTIONS(653), - [anon_sym__Atomic] = ACTIONS(653), - [sym_primitive_type] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_identifier] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [aux_sym_preproc_else_token1] = ACTIONS(653), - [aux_sym_preproc_if_token2] = ACTIONS(653), - [sym_preproc_directive] = ACTIONS(653), - [aux_sym_preproc_if_token1] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_restrict] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typedef] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_if] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_signed] = ACTIONS(653), - [anon_sym_enum] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [sym_number_literal] = ACTIONS(651), - [anon_sym_return] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(653), - [aux_sym_preproc_include_token1] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_volatile] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(653), - [anon_sym_union] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(651), - [anon_sym_unsigned] = ACTIONS(653), - [anon_sym_struct] = ACTIONS(653), - [anon_sym_short] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(651), - [sym_null] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_goto] = ACTIONS(653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [aux_sym_preproc_elif_token1] = ACTIONS(653), - [aux_sym_preproc_def_token1] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), - [anon_sym_register] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), + [sym_null] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [aux_sym_preproc_elif_token1] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [aux_sym_preproc_else_token1] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(2675), + [sym_true] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [780] = { - [aux_sym_string_literal_repeat1] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(657), - [aux_sym_string_literal_token1] = ACTIONS(657), + [sym_while_statement] = STATE(1077), + [sym_continue_statement] = STATE(1077), + [sym_goto_statement] = STATE(1077), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1077), + [sym_expression_statement] = STATE(1077), + [sym_if_statement] = STATE(1077), + [sym_do_statement] = STATE(1077), + [sym_for_statement] = STATE(1077), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1077), + [sym_return_statement] = STATE(1077), + [sym_break_statement] = STATE(1077), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(1077), + [sym_labeled_statement] = STATE(1077), + [sym_case_statement] = STATE(1077), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [781] = { - [sym_do_statement] = STATE(1062), - [sym_preproc_def] = STATE(1062), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(1062), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(1062), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(1062), - [sym_goto_statement] = STATE(1062), - [sym__empty_declaration] = STATE(1062), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(1062), - [sym_switch_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_return_statement] = STATE(1062), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(1062), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(1062), - [aux_sym_translation_unit_repeat1] = STATE(1062), - [sym_break_statement] = STATE(1062), - [sym_preproc_include] = STATE(1062), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(1062), - [sym_preproc_ifdef] = STATE(1062), - [sym_linkage_specification] = STATE(1062), - [sym_continue_statement] = STATE(1062), - [sym_compound_statement] = STATE(1062), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(1062), - [sym_expression_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1379), + [aux_sym_preproc_if_token2] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [aux_sym_preproc_elif_token1] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [aux_sym_preproc_else_token1] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1379), + [sym_true] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), }, [782] = { - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_null] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1180), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [783] = { - [sym__declarator] = STATE(492), - [sym_function_declarator] = STATE(492), - [sym_array_declarator] = STATE(492), - [sym_pointer_declarator] = STATE(492), - [sym_init_declarator] = STATE(493), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(332), + [sym_null] = ACTIONS(1403), + [anon_sym_volatile] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1403), + [aux_sym_preproc_if_token2] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_typedef] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym__Atomic] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), + [sym_number_literal] = ACTIONS(1405), + [anon_sym_restrict] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_signed] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), + [aux_sym_preproc_elif_token1] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym___attribute__] = ACTIONS(1403), + [anon_sym_sizeof] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_unsigned] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [aux_sym_preproc_else_token1] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1405), + [sym_preproc_directive] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1405), + [aux_sym_preproc_if_token1] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1403), + [sym_true] = ACTIONS(1403), + [sym_primitive_type] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [aux_sym_preproc_include_token1] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_register] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [sym_false] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1403), + [anon_sym_auto] = ACTIONS(1403), + [anon_sym_inline] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), }, [784] = { - [sym_parenthesized_expression] = STATE(1064), - [anon_sym_LPAREN2] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1455), + [aux_sym_preproc_if_token2] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym__Atomic] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), + [sym_number_literal] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_signed] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), + [aux_sym_preproc_elif_token1] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1455), + [anon_sym_sizeof] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [aux_sym_preproc_else_token1] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_preproc_directive] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [aux_sym_preproc_if_token1] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1455), + [sym_true] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [aux_sym_preproc_include_token1] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [aux_sym_preproc_def_token1] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_inline] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), }, [785] = { - [anon_sym_DASH_DASH] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [aux_sym_preproc_if_token2] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [aux_sym_preproc_elif_token1] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [aux_sym_preproc_else_token1] = ACTIONS(1427), - [sym_preproc_directive] = ACTIONS(1427), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), + [sym_null] = ACTIONS(1463), + [anon_sym_volatile] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1463), + [aux_sym_preproc_if_token2] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_typedef] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym__Atomic] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [sym_number_literal] = ACTIONS(1465), + [anon_sym_restrict] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_signed] = ACTIONS(1463), + [anon_sym_long] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [aux_sym_preproc_elif_token1] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym___attribute__] = ACTIONS(1463), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsigned] = ACTIONS(1463), + [anon_sym_short] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [aux_sym_preproc_else_token1] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1465), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1465), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1463), + [sym_true] = ACTIONS(1463), + [sym_primitive_type] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1465), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [anon_sym_auto] = ACTIONS(1463), + [anon_sym_inline] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), }, [786] = { - [aux_sym_preproc_if_token2] = ACTIONS(2673), + [aux_sym_preproc_if_token2] = ACTIONS(2679), [sym_comment] = ACTIONS(3), }, [787] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1065), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1078), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(1078), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1065), + [sym_preproc_call] = STATE(482), [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), + [sym__declaration_specifiers] = STATE(230), [sym_compound_literal_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(2675), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [788] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2677), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2683), }, [789] = { - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [sym_true] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [aux_sym_preproc_else_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_null] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [aux_sym_preproc_elif_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1431), + [sym_null] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym__Atomic] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_elif_token1] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [aux_sym_preproc_else_token1] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), }, [790] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2679), - [sym_preproc_arg] = ACTIONS(2681), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(2685), + [sym_preproc_arg] = ACTIONS(2687), }, [791] = { - [anon_sym_DASH_DASH] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [aux_sym_preproc_if_token2] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_signed] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [aux_sym_preproc_elif_token1] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1461), - [sym_true] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [aux_sym_preproc_else_token1] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [sym_null] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - }, - [792] = { - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2683), - [ts_builtin_sym_end] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), - }, - [793] = { - [anon_sym_LPAREN2] = ACTIONS(1644), - [anon_sym_DASH_DASH] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1646), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_primitive_type] = ACTIONS(1646), - [sym_true] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [aux_sym_preproc_else_token1] = ACTIONS(1646), - [aux_sym_preproc_if_token2] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1644), - [sym_null] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [aux_sym_preproc_elif_token1] = ACTIONS(1646), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_register] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1644), - }, - [794] = { - [anon_sym_LPAREN2] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1650), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_primitive_type] = ACTIONS(1650), - [sym_true] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [aux_sym_preproc_else_token1] = ACTIONS(1650), - [aux_sym_preproc_if_token2] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym_null] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [aux_sym_preproc_elif_token1] = ACTIONS(1650), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1648), - }, - [795] = { - [aux_sym_declaration_repeat1] = STATE(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(2687), - }, - [796] = { - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2689), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2689), [anon_sym_union] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), [anon_sym_short] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_null] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2691), [anon_sym_do] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [ts_builtin_sym_end] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2691), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2691), [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2691), [sym_primitive_type] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), [anon_sym_for] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), [anon_sym_BANG] = ACTIONS(2689), [anon_sym_static] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), [anon_sym_STAR] = ACTIONS(2689), [anon_sym_if] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), [anon_sym_switch] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), + [anon_sym_signed] = ACTIONS(2691), [anon_sym_enum] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), [anon_sym_return] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), [anon_sym_continue] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), [anon_sym_auto] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2689), [anon_sym_inline] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [sym_null] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), }, - [797] = { - [aux_sym_type_definition_repeat2] = STATE(806), + [792] = { + [sym_null] = ACTIONS(1646), + [anon_sym_volatile] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1646), + [aux_sym_preproc_if_token2] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_restrict] = ACTIONS(1646), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [aux_sym_preproc_elif_token1] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [aux_sym_preproc_else_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_LPAREN2] = ACTIONS(1648), + [sym_true] = ACTIONS(1646), + [sym_primitive_type] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_inline] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + }, + [793] = { + [sym_null] = ACTIONS(1662), + [anon_sym_volatile] = ACTIONS(1662), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1662), + [aux_sym_preproc_if_token2] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_typedef] = ACTIONS(1662), + [anon_sym_DASH_DASH] = ACTIONS(1660), + [anon_sym__Atomic] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1662), + [sym_number_literal] = ACTIONS(1660), + [anon_sym_restrict] = ACTIONS(1662), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1660), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1662), + [anon_sym_long] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1662), + [aux_sym_preproc_elif_token1] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_DQUOTE] = ACTIONS(1660), + [anon_sym___attribute__] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_unsigned] = ACTIONS(1662), + [anon_sym_short] = ACTIONS(1662), + [anon_sym_do] = ACTIONS(1662), + [aux_sym_preproc_else_token1] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1660), + [sym_preproc_directive] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1660), + [aux_sym_preproc_if_token1] = ACTIONS(1662), + [anon_sym_LPAREN2] = ACTIONS(1660), + [sym_true] = ACTIONS(1662), + [sym_primitive_type] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [aux_sym_preproc_include_token1] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_register] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_switch] = ACTIONS(1662), + [sym_false] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [aux_sym_preproc_def_token1] = ACTIONS(1662), + [anon_sym_auto] = ACTIONS(1662), + [anon_sym_inline] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + }, + [794] = { + [aux_sym_declaration_repeat1] = STATE(678), + [anon_sym_COMMA] = ACTIONS(957), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), [anon_sym_SEMI] = ACTIONS(2693), }, + [795] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [796] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), + }, + [797] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2711), + }, [798] = { - [sym_type_qualifier] = STATE(662), - [sym_pointer_type_declarator] = STATE(800), - [sym_array_type_declarator] = STATE(800), - [sym_function_type_declarator] = STATE(800), - [aux_sym_type_definition_repeat1] = STATE(662), - [sym__type_declarator] = STATE(800), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [aux_sym_concatenated_string_repeat1] = STATE(798), + [sym_string_literal] = STATE(798), + [anon_sym_PERCENT] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [799] = { - [anon_sym_LPAREN2] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2695), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [800] = { - [sym_parameter_list] = STATE(502), - [anon_sym_LPAREN2] = ACTIONS(941), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [801] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(2699), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [802] = { - [anon_sym_LPAREN2] = ACTIONS(2701), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [803] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(2699), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [804] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(1073), - [sym_logical_expression] = STATE(1073), - [sym_bitwise_expression] = STATE(1073), - [sym_cast_expression] = STATE(1073), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(1073), - [sym_char_literal] = STATE(1073), - [sym_assignment_expression] = STATE(1073), - [sym_type_qualifier] = STATE(719), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(1073), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(1073), - [aux_sym_type_definition_repeat1] = STATE(719), - [sym_conditional_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_relational_expression] = STATE(1073), - [sym_sizeof_expression] = STATE(1073), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(1073), - [sym_concatenated_string] = STATE(1073), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(2699), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [805] = { - [sym_parameter_list] = STATE(502), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [806] = { - [aux_sym_type_definition_repeat2] = STATE(806), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [807] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(2714), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [808] = { - [sym_string_literal] = STATE(77), - [sym__expression] = STATE(1074), - [sym_logical_expression] = STATE(1074), - [sym_bitwise_expression] = STATE(1074), - [sym_cast_expression] = STATE(1074), - [sym_field_expression] = STATE(1074), - [sym_compound_literal_expression] = STATE(1074), - [sym_char_literal] = STATE(1074), - [sym_assignment_expression] = STATE(1074), - [sym_pointer_expression] = STATE(1074), - [sym_shift_expression] = STATE(1074), - [sym_math_expression] = STATE(1074), - [sym_call_expression] = STATE(1074), - [sym_conditional_expression] = STATE(1074), - [sym_equality_expression] = STATE(1074), - [sym_relational_expression] = STATE(1074), - [sym_sizeof_expression] = STATE(1074), - [sym_subscript_expression] = STATE(1074), - [sym_parenthesized_expression] = STATE(1074), - [sym_concatenated_string] = STATE(1074), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(163), - [sym_identifier] = ACTIONS(2716), - [sym_true] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_sizeof] = ACTIONS(169), - [sym_null] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(173), - [sym_number_literal] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [sym_false] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(33), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [809] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1076), - [sym_logical_expression] = STATE(1076), - [sym_bitwise_expression] = STATE(1076), - [sym_cast_expression] = STATE(1076), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1076), - [sym_char_literal] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1076), - [sym_math_expression] = STATE(1076), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1076), - [sym_equality_expression] = STATE(1076), - [sym_relational_expression] = STATE(1076), - [sym_sizeof_expression] = STATE(1076), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1076), - [sym_concatenated_string] = STATE(1076), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2724), - [sym_false] = ACTIONS(2720), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(460), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(1776), }, [810] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1085), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1085), + [sym_math_expression] = STATE(1085), + [sym_cast_expression] = STATE(1085), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1085), + [sym_assignment_expression] = STATE(1085), + [sym_relational_expression] = STATE(1085), + [sym_shift_expression] = STATE(1085), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1085), + [sym_bitwise_expression] = STATE(1085), + [sym_equality_expression] = STATE(1085), + [sym_sizeof_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1085), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(1085), + [sym_null] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2719), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [811] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [ts_builtin_sym_end] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(1086), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1086), + [sym_math_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_relational_expression] = STATE(1086), + [sym_shift_expression] = STATE(1086), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1086), + [sym_bitwise_expression] = STATE(1086), + [sym_equality_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(1086), + [sym_char_literal] = STATE(1086), + [sym_null] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(2723), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [812] = { - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2732), - [anon_sym__Atomic] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_signed] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_unsigned] = ACTIONS(2732), - [anon_sym_short] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_primitive_type] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [sym_preproc_directive] = ACTIONS(2732), - [aux_sym_preproc_if_token1] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [aux_sym_preproc_include_token1] = ACTIONS(2732), - [anon_sym_auto] = ACTIONS(2732), - [anon_sym_inline] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [sym_null] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_goto] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2732), - [anon_sym_register] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [813] = { - [sym_do_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(1083), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(201), - [sym_type_definition] = STATE(1083), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [aux_sym_case_statement_repeat1] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1083), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_default] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [sym_true] = ACTIONS(15), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_long] = ACTIONS(426), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_static] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_while] = ACTIONS(2744), - [sym_false] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_case] = ACTIONS(2734), - [sym_null] = ACTIONS(15), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_union] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_short] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(2727), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), }, [814] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [815] = { - [sym__expression] = STATE(1085), - [sym_logical_expression] = STATE(1085), - [sym_bitwise_expression] = STATE(1085), - [sym_cast_expression] = STATE(1085), - [sym_declaration] = STATE(1084), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1085), - [sym_char_literal] = STATE(1085), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1085), - [sym_equality_expression] = STATE(1085), - [sym_relational_expression] = STATE(1085), - [sym_sizeof_expression] = STATE(1085), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1085), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1085), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1085), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1085), - [sym_math_expression] = STATE(1085), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [816] = { - [sym_do_statement] = STATE(1090), - [sym_goto_statement] = STATE(1090), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1090), - [sym_switch_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_return_statement] = STATE(1090), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1090), - [sym_continue_statement] = STATE(1090), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1090), - [sym_labeled_statement] = STATE(1090), - [sym_expression_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [817] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2741), + [anon_sym_AMP_EQ] = ACTIONS(2741), + [anon_sym_DASH_EQ] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(2741), + [anon_sym_STAR_EQ] = ACTIONS(2741), + [anon_sym_LT_LT_EQ] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [818] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1095), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [819] = { - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2764), - [anon_sym__Atomic] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_unsigned] = ACTIONS(2764), - [anon_sym_short] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_primitive_type] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [sym_preproc_directive] = ACTIONS(2764), - [aux_sym_preproc_if_token1] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [aux_sym_preproc_include_token1] = ACTIONS(2764), - [anon_sym_auto] = ACTIONS(2764), - [anon_sym_inline] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [sym_null] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2764), - [anon_sym_register] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_RBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(2747), + [anon_sym_AMP_EQ] = ACTIONS(2747), + [anon_sym_DASH_EQ] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_DASH_GT] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_COLON] = ACTIONS(2747), + [anon_sym_PLUS_EQ] = ACTIONS(2747), + [anon_sym_STAR_EQ] = ACTIONS(2747), + [anon_sym_LT_LT_EQ] = ACTIONS(2747), + [anon_sym_QMARK] = ACTIONS(2747), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_CARET_EQ] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_SLASH_EQ] = ACTIONS(2747), + [anon_sym_GT_GT_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_PIPE_EQ] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2747), }, [820] = { - [sym_do_statement] = STATE(820), - [sym_goto_statement] = STATE(820), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(820), - [sym_switch_statement] = STATE(820), - [sym_for_statement] = STATE(820), - [sym_return_statement] = STATE(820), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(820), - [sym_case_statement] = STATE(820), - [sym_break_statement] = STATE(820), - [sym_continue_statement] = STATE(820), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(820), - [sym_labeled_statement] = STATE(820), - [sym_expression_statement] = STATE(820), - [sym_while_statement] = STATE(820), - [anon_sym_LPAREN2] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2775), - [sym_true] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2787), - [sym_number_literal] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2807), - [sym_false] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2825), - [sym_null] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2749), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2840), }, [821] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1098), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1098), + [sym_math_expression] = STATE(1098), + [sym_cast_expression] = STATE(1098), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_relational_expression] = STATE(1098), + [sym_shift_expression] = STATE(1098), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1098), + [sym_bitwise_expression] = STATE(1098), + [sym_equality_expression] = STATE(1098), + [sym_sizeof_expression] = STATE(1098), + [sym_compound_literal_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_char_literal] = STATE(1098), + [sym_null] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [822] = { - [anon_sym_LPAREN2] = ACTIONS(2845), - [anon_sym_COLON] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2847), - [anon_sym__Atomic] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2845), - [anon_sym_auto] = ACTIONS(2847), - [anon_sym_volatile] = ACTIONS(2847), - [anon_sym_inline] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_restrict] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(2845), - [anon_sym_register] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), + [sym_subscript_designator] = STATE(1100), + [sym_field_designator] = STATE(1100), + [aux_sym_initializer_pair_repeat1] = STATE(1100), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2065), }, [823] = { + [aux_sym_initializer_list_repeat1] = STATE(1102), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2727), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), }, [824] = { - [sym_enumerator] = STATE(823), - [sym_identifier] = ACTIONS(527), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2851), + [aux_sym_concatenated_string_repeat1] = STATE(1103), + [sym_string_literal] = STATE(1103), + [anon_sym_PERCENT] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [825] = { - [aux_sym_enumerator_list_repeat1] = STATE(825), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2849), + [aux_sym_initializer_list_repeat1] = STATE(1102), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [826] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(2856), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1300), }, [827] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(1013), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(955), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(1300), }, [828] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [sym_struct_specifier] = STATE(524), + [sym_macro_type_specifier] = STATE(524), + [sym_attribute_specifier] = STATE(527), + [sym__type_specifier] = STATE(524), + [sym_union_specifier] = STATE(524), + [sym_type_qualifier] = STATE(527), + [sym_parameter_declaration] = STATE(1115), + [aux_sym__declaration_specifiers_repeat1] = STATE(527), + [sym_sized_type_specifier] = STATE(524), + [sym_enum_specifier] = STATE(524), + [sym__declaration_specifiers] = STATE(528), + [sym_storage_class_specifier] = STATE(527), + [aux_sym_sized_type_specifier_repeat1] = STATE(525), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(177), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [829] = { + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), }, [830] = { - [sym_string_literal] = STATE(830), - [aux_sym_concatenated_string_repeat1] = STATE(830), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [aux_sym_parameter_list_repeat1] = STATE(1117), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), }, [831] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym__declaration_specifiers_repeat1] = STATE(1118), + [sym_attribute_specifier] = STATE(1118), + [sym_type_qualifier] = STATE(1118), + [sym_storage_class_specifier] = STATE(1118), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(830), }, [832] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), - [anon_sym_LT_LT_EQ] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_EQ] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_sized_type_specifier_repeat1] = STATE(832), + [anon_sym_unsigned] = ACTIONS(2799), + [anon_sym_volatile] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_static] = ACTIONS(702), + [anon_sym_restrict] = ACTIONS(702), + [anon_sym_register] = ACTIONS(702), + [anon_sym_extern] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_short] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [anon_sym_signed] = ACTIONS(2799), + [anon_sym_long] = ACTIONS(2799), + [sym_identifier] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(704), + [anon_sym__Atomic] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_auto] = ACTIONS(702), + [sym_primitive_type] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(702), + [anon_sym___attribute__] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), }, [833] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_LPAREN2] = ACTIONS(2802), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2802), }, [834] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym__declaration_specifiers_repeat1] = STATE(1119), + [sym_attribute_specifier] = STATE(1119), + [sym_type_qualifier] = STATE(1119), + [sym_storage_class_specifier] = STATE(1119), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(832), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(830), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(830), }, [835] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [sym_function_declarator] = STATE(1121), + [sym__abstract_declarator] = STATE(520), + [sym_pointer_declarator] = STATE(1121), + [sym_type_qualifier] = STATE(1120), + [aux_sym_type_definition_repeat1] = STATE(1120), + [sym_abstract_array_declarator] = STATE(520), + [sym__declarator] = STATE(1121), + [sym_parameter_list] = STATE(261), + [sym_abstract_function_declarator] = STATE(520), + [sym_array_declarator] = STATE(1121), + [sym_abstract_pointer_declarator] = STATE(520), + [sym_identifier] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(532), }, [836] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_function_declarator] = STATE(373), + [sym_macro_type_specifier] = STATE(524), + [sym_type_qualifier] = STATE(527), + [sym__type_specifier] = STATE(524), + [sym_union_specifier] = STATE(524), + [sym_parameter_list] = STATE(261), + [sym__declarator] = STATE(373), + [sym_parameter_declaration] = STATE(522), + [sym_abstract_function_declarator] = STATE(526), + [sym_array_declarator] = STATE(373), + [sym_storage_class_specifier] = STATE(527), + [aux_sym_sized_type_specifier_repeat1] = STATE(525), + [sym_struct_specifier] = STATE(524), + [sym_attribute_specifier] = STATE(527), + [sym__abstract_declarator] = STATE(526), + [sym_pointer_declarator] = STATE(373), + [sym_abstract_array_declarator] = STATE(526), + [aux_sym__declaration_specifiers_repeat1] = STATE(527), + [sym_sized_type_specifier] = STATE(524), + [sym_enum_specifier] = STATE(524), + [sym__declaration_specifiers] = STATE(528), + [sym_abstract_pointer_declarator] = STATE(526), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(2808), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(532), }, [837] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_parameter_list] = STATE(534), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2810), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(1300), }, [838] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [sym_parameter_list] = STATE(1124), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2810), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), }, [839] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_LPAREN2] = ACTIONS(2812), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), }, [840] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [841] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1096), - [sym_logical_expression] = STATE(1096), - [sym_bitwise_expression] = STATE(1096), - [sym_cast_expression] = STATE(1096), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1096), - [sym_char_literal] = STATE(1096), - [sym_assignment_expression] = STATE(1096), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1096), - [sym_math_expression] = STATE(1096), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1096), - [sym_equality_expression] = STATE(1096), - [sym_relational_expression] = STATE(1096), - [sym_sizeof_expression] = STATE(1096), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1096), - [sym_concatenated_string] = STATE(1096), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(207), + [sym_type_qualifier] = STATE(841), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_null] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(2114), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_restrict] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [sym_false] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym__Atomic] = ACTIONS(1275), + [sym_true] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_RBRACK] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), }, [842] = { - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2884), - [aux_sym_preproc_include_token1] = ACTIONS(2886), - [anon_sym_auto] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2884), - [sym_null] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2884), - [ts_builtin_sym_end] = ACTIONS(2884), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [843] = { - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2888), - [aux_sym_preproc_include_token1] = ACTIONS(2890), - [anon_sym_auto] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2888), - [sym_null] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2888), - [ts_builtin_sym_end] = ACTIONS(2888), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), + [sym_concatenated_string] = STATE(1127), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1127), + [sym_math_expression] = STATE(1127), + [sym_cast_expression] = STATE(1127), + [sym_type_qualifier] = STATE(841), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_conditional_expression] = STATE(1127), + [sym_assignment_expression] = STATE(1127), + [sym_relational_expression] = STATE(1127), + [sym_shift_expression] = STATE(1127), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1127), + [sym_bitwise_expression] = STATE(1127), + [sym_equality_expression] = STATE(1127), + [sym_sizeof_expression] = STATE(1127), + [sym_compound_literal_expression] = STATE(1127), + [sym_parenthesized_expression] = STATE(1127), + [sym_char_literal] = STATE(1127), + [sym_null] = ACTIONS(2816), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2816), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [844] = { - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2822), + [sym_null] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2822), + [ts_builtin_sym_end] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), }, [845] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1103), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1103), - [sym__field_declaration_list_item] = STATE(1103), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(1103), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1103), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1103), - [sym_field_declaration] = STATE(1103), - [sym__declaration_specifiers] = STATE(1102), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2894), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2894), - [aux_sym_preproc_def_token1] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2826), }, [846] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2904), - [sym_preproc_arg] = ACTIONS(2906), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2828), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2828), }, [847] = { - [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2908), + [sym_array_type_declarator] = STATE(846), + [sym_type_qualifier] = STATE(664), + [sym_pointer_type_declarator] = STATE(846), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_function_type_declarator] = STATE(846), + [sym__type_declarator] = STATE(846), + [sym_identifier] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1306), }, [848] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_auto] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_LPAREN2] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2830), }, [849] = { + [sym_parameter_list] = STATE(546), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2832), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(1308), }, [850] = { + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [851] = { - [aux_sym_preproc_if_token2] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2836), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2836), }, [852] = { - [sym_function_field_declarator] = STATE(1111), - [sym__field_declarator] = STATE(1111), - [sym_pointer_field_declarator] = STATE(1111), - [sym_array_field_declarator] = STATE(1111), - [sym_bitfield_clause] = STATE(1112), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(2920), + [sym_concatenated_string] = STATE(1131), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1131), + [sym_math_expression] = STATE(1131), + [sym_cast_expression] = STATE(1131), + [sym_type_qualifier] = STATE(841), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_conditional_expression] = STATE(1131), + [sym_assignment_expression] = STATE(1131), + [sym_relational_expression] = STATE(1131), + [sym_shift_expression] = STATE(1131), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1131), + [sym_bitwise_expression] = STATE(1131), + [sym_equality_expression] = STATE(1131), + [sym_sizeof_expression] = STATE(1131), + [sym_compound_literal_expression] = STATE(1131), + [sym_parenthesized_expression] = STATE(1131), + [sym_char_literal] = STATE(1131), + [sym_null] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_restrict] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [sym_false] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, [853] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1113), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1113), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [854] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2832), }, [855] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), - [anon_sym_long] = ACTIONS(2924), - [anon_sym__Atomic] = ACTIONS(2924), - [sym_primitive_type] = ACTIONS(2924), - [anon_sym_auto] = ACTIONS(2924), - [anon_sym_volatile] = ACTIONS(2924), - [anon_sym_inline] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [sym_preproc_directive] = ACTIONS(2924), - [anon_sym_unsigned] = ACTIONS(2924), - [aux_sym_preproc_if_token1] = ACTIONS(2924), - [anon_sym_short] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_restrict] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_struct] = ACTIONS(2924), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), - [aux_sym_preproc_def_token1] = ACTIONS(2924), - [anon_sym_signed] = ACTIONS(2924), - [anon_sym_register] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [856] = { - [aux_sym_preproc_if_token2] = ACTIONS(2928), - [sym_comment] = ACTIONS(3), + [aux_sym_for_statement_repeat1] = STATE(1134), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [857] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1116), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1116), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(2930), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1135), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1135), + [sym_math_expression] = STATE(1135), + [sym_cast_expression] = STATE(1135), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1135), + [sym_relational_expression] = STATE(1135), + [sym_shift_expression] = STATE(1135), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1135), + [sym_bitwise_expression] = STATE(1135), + [sym_equality_expression] = STATE(1135), + [sym_sizeof_expression] = STATE(1135), + [sym_compound_literal_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(1135), + [sym_char_literal] = STATE(1135), + [sym_null] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(2849), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [858] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2932), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [859] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), + [sym_parameter_list] = STATE(861), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1634), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1634), }, [860] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2934), - [sym_preproc_arg] = ACTIONS(2936), + [sym_function_declarator] = STATE(1137), + [sym__declarator] = STATE(1137), + [sym_type_qualifier] = STATE(664), + [sym_pointer_declarator] = STATE(1137), + [sym_array_declarator] = STATE(1137), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_identifier] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(332), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1329), }, [861] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_COLON] = ACTIONS(1482), - [sym_identifier] = ACTIONS(808), - [anon_sym__Atomic] = ACTIONS(810), - [anon_sym_auto] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_inline] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(813), - [anon_sym_restrict] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(813), - [anon_sym_const] = ACTIONS(810), + [sym_attribute_specifier] = STATE(1138), + [aux_sym_function_declarator_repeat1] = STATE(1138), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1666), }, [862] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_COLON] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(862), + [sym_attribute_specifier] = STATE(862), + [sym_type_qualifier] = STATE(862), + [sym_storage_class_specifier] = STATE(862), + [sym_identifier] = ACTIONS(834), + [anon_sym_const] = ACTIONS(836), + [anon_sym_LPAREN2] = ACTIONS(1670), + [anon_sym_volatile] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(836), + [anon_sym_register] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_auto] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(836), + [anon_sym_inline] = ACTIONS(839), + [anon_sym___attribute__] = ACTIONS(842), }, [863] = { - [sym_function_field_declarator] = STATE(866), - [sym__field_declarator] = STATE(866), - [sym_pointer_field_declarator] = STATE(866), - [sym_array_field_declarator] = STATE(866), - [sym_type_qualifier] = STATE(1120), - [aux_sym_type_definition_repeat1] = STATE(1120), - [anon_sym_LPAREN2] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(862), + [sym_attribute_specifier] = STATE(862), + [sym_type_qualifier] = STATE(862), + [sym_storage_class_specifier] = STATE(862), + [sym_identifier] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [864] = { - [sym_parameter_list] = STATE(872), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_null] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_auto] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), }, [865] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2861), + [sym_null] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_auto] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), }, [866] = { - [sym_parameter_list] = STATE(872), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [867] = { - [sym_function_field_declarator] = STATE(1122), - [sym__field_declarator] = STATE(1122), - [sym_pointer_field_declarator] = STATE(1122), - [sym_array_field_declarator] = STATE(1122), - [sym_type_qualifier] = STATE(662), - [aux_sym_type_definition_repeat1] = STATE(662), - [anon_sym_LPAREN2] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1141), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1141), + [sym_math_expression] = STATE(1141), + [sym_cast_expression] = STATE(1141), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1141), + [sym_assignment_expression] = STATE(1141), + [sym_relational_expression] = STATE(1141), + [sym_shift_expression] = STATE(1141), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1141), + [sym_bitwise_expression] = STATE(1141), + [sym_equality_expression] = STATE(1141), + [sym_sizeof_expression] = STATE(1141), + [sym_compound_literal_expression] = STATE(1141), + [sym_parenthesized_expression] = STATE(1141), + [sym_char_literal] = STATE(1141), + [sym_null] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(2867), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(2871), + [sym_true] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [868] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(1125), - [sym_logical_expression] = STATE(1125), - [sym_bitwise_expression] = STATE(1125), - [sym_cast_expression] = STATE(1125), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(1125), - [sym_char_literal] = STATE(1125), - [sym_assignment_expression] = STATE(1125), - [sym_type_qualifier] = STATE(1126), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(1125), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(1125), - [aux_sym_type_definition_repeat1] = STATE(1126), - [sym_conditional_expression] = STATE(1125), - [sym_equality_expression] = STATE(1125), - [sym_relational_expression] = STATE(1125), - [sym_sizeof_expression] = STATE(1125), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(1125), - [sym_concatenated_string] = STATE(1125), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(2946), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(2948), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(2944), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(2950), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [869] = { - [sym_function_field_declarator] = STATE(1127), - [sym__field_declarator] = STATE(1127), - [sym_pointer_field_declarator] = STATE(1127), - [sym_array_field_declarator] = STATE(1127), - [anon_sym_LPAREN2] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2877), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2877), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [anon_sym_auto] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), }, [870] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), - [anon_sym_long] = ACTIONS(2952), - [anon_sym__Atomic] = ACTIONS(2952), - [sym_primitive_type] = ACTIONS(2952), - [anon_sym_auto] = ACTIONS(2952), - [anon_sym_volatile] = ACTIONS(2952), - [anon_sym_inline] = ACTIONS(2952), - [anon_sym_extern] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [sym_preproc_directive] = ACTIONS(2952), - [anon_sym_unsigned] = ACTIONS(2952), - [aux_sym_preproc_if_token1] = ACTIONS(2952), - [anon_sym_short] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_restrict] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2952), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), - [aux_sym_preproc_def_token1] = ACTIONS(2952), - [anon_sym_signed] = ACTIONS(2952), - [anon_sym_register] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(2879), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [871] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2956), + [sym_while_statement] = STATE(1148), + [sym_continue_statement] = STATE(1148), + [sym_goto_statement] = STATE(1148), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_declaration] = STATE(1148), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1148), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_expression_statement] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_do_statement] = STATE(1148), + [sym_for_statement] = STATE(1148), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1148), + [sym_sizeof_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_switch_statement] = STATE(1148), + [sym_return_statement] = STATE(1148), + [sym_break_statement] = STATE(1148), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [aux_sym_case_statement_repeat1] = STATE(1148), + [sym_labeled_statement] = STATE(1148), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(2881), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_short] = ACTIONS(553), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_default] = ACTIONS(2881), + [sym_true] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_register] = ACTIONS(17), + [sym_identifier] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [872] = { - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2958), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2958), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2958), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1150), + [sym_math_expression] = STATE(1150), + [sym_cast_expression] = STATE(1150), + [sym_declaration] = STATE(1149), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1150), + [sym_bitwise_expression] = STATE(1150), + [sym_equality_expression] = STATE(1150), + [sym_sizeof_expression] = STATE(1150), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1150), + [sym_parenthesized_expression] = STATE(1150), + [sym_concatenated_string] = STATE(1150), + [sym_char_literal] = STATE(1150), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1150), + [sym_assignment_expression] = STATE(1150), + [sym_relational_expression] = STATE(1150), + [sym_shift_expression] = STATE(1150), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(2893), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [873] = { - [sym_bitfield_clause] = STATE(1129), - [aux_sym_field_declaration_repeat1] = STATE(1130), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2956), + [sym_while_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1155), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [874] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1132), - [sym_logical_expression] = STATE(1132), - [sym_bitwise_expression] = STATE(1132), - [sym_cast_expression] = STATE(1132), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1132), - [sym_char_literal] = STATE(1132), - [sym_assignment_expression] = STATE(1132), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1132), - [sym_math_expression] = STATE(1132), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1132), - [sym_equality_expression] = STATE(1132), - [sym_relational_expression] = STATE(1132), - [sym_sizeof_expression] = STATE(1132), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1132), - [sym_concatenated_string] = STATE(1132), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(2962), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(2964), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [875] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [876] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1134), - [sym_logical_expression] = STATE(1134), - [sym_bitwise_expression] = STATE(1134), - [sym_cast_expression] = STATE(1134), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1134), - [sym_char_literal] = STATE(1134), - [sym_assignment_expression] = STATE(1134), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1134), - [sym_math_expression] = STATE(1134), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1134), - [sym_equality_expression] = STATE(1134), - [sym_relational_expression] = STATE(1134), - [sym_sizeof_expression] = STATE(1134), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1134), - [sym_concatenated_string] = STATE(1134), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2966), - [sym_false] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_case] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [anon_sym_auto] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), }, [877] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(877), + [sym_continue_statement] = STATE(877), + [sym_goto_statement] = STATE(877), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(877), + [sym_expression_statement] = STATE(877), + [sym_if_statement] = STATE(877), + [sym_do_statement] = STATE(877), + [sym_for_statement] = STATE(877), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(877), + [sym_return_statement] = STATE(877), + [sym_break_statement] = STATE(877), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(877), + [sym_labeled_statement] = STATE(877), + [sym_case_statement] = STATE(877), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2914), + [sym_null] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2940), + [sym_true] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2961), + [sym_false] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2985), }, [878] = { - [sym__expression] = STATE(1136), - [sym_logical_expression] = STATE(1136), - [sym_bitwise_expression] = STATE(1136), - [sym_cast_expression] = STATE(1136), - [sym_declaration] = STATE(1135), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1136), - [sym_char_literal] = STATE(1136), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1136), - [sym_equality_expression] = STATE(1136), - [sym_relational_expression] = STATE(1136), - [sym_sizeof_expression] = STATE(1136), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1136), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1136), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1136), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1136), - [sym_math_expression] = STATE(1136), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(2972), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(2972), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [879] = { - [sym_do_statement] = STATE(1137), - [sym_goto_statement] = STATE(1137), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1137), - [sym_switch_statement] = STATE(1137), - [sym_for_statement] = STATE(1137), - [sym_return_statement] = STATE(1137), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1137), - [sym_continue_statement] = STATE(1137), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1137), - [sym_labeled_statement] = STATE(1137), - [sym_expression_statement] = STATE(1137), - [sym_while_statement] = STATE(1137), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_volatile] = ACTIONS(2990), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_restrict] = ACTIONS(2990), + [anon_sym_register] = ACTIONS(2990), + [anon_sym_extern] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2990), + [anon_sym_const] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2992), + [anon_sym_COLON] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2990), + [anon_sym_RPAREN] = ACTIONS(2992), + [anon_sym_auto] = ACTIONS(2990), + [anon_sym_inline] = ACTIONS(2990), + [anon_sym___attribute__] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), }, [880] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_COMMA] = ACTIONS(2994), + [anon_sym_RBRACE] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), }, [881] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_enumerator] = STATE(880), + [sym_identifier] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), }, [882] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2978), + [aux_sym_enumerator_list_repeat1] = STATE(882), + [anon_sym_COMMA] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2994), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(2978), }, [883] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(2980), - [sym_preproc_arg] = ACTIONS(2982), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [884] = { - [aux_sym_preproc_params_repeat1] = STATE(1140), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2984), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, [885] = { - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [sym_true] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_typedef] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_switch] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_PLUS_PLUS] = ACTIONS(2986), - [sym_number_literal] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2988), - [sym_false] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2986), - [aux_sym_preproc_include_token1] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_sizeof] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_unsigned] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym_null] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_goto] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [ts_builtin_sym_end] = ACTIONS(2986), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3017), }, [886] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1142), - [sym_logical_expression] = STATE(1142), - [sym_bitwise_expression] = STATE(1142), - [sym_cast_expression] = STATE(1142), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1142), - [sym_char_literal] = STATE(1142), - [sym_assignment_expression] = STATE(1142), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1142), - [sym_math_expression] = STATE(1142), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1142), - [sym_equality_expression] = STATE(1142), - [sym_relational_expression] = STATE(1142), - [sym_sizeof_expression] = STATE(1142), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1142), - [sym_concatenated_string] = STATE(1142), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(2994), + [aux_sym_concatenated_string_repeat1] = STATE(886), + [sym_string_literal] = STATE(886), + [anon_sym_PERCENT] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [887] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [888] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1144), - [sym_logical_expression] = STATE(1144), - [sym_bitwise_expression] = STATE(1144), - [sym_cast_expression] = STATE(1144), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1144), - [sym_char_literal] = STATE(1144), - [sym_assignment_expression] = STATE(1144), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1144), - [sym_math_expression] = STATE(1144), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_relational_expression] = STATE(1144), - [sym_sizeof_expression] = STATE(1144), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1144), - [sym_concatenated_string] = STATE(1144), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3000), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_false] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(207), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [889] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [890] = { - [sym__expression] = STATE(1146), - [sym_logical_expression] = STATE(1146), - [sym_bitwise_expression] = STATE(1146), - [sym_cast_expression] = STATE(1146), - [sym_declaration] = STATE(1145), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1146), - [sym_char_literal] = STATE(1146), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1146), - [sym_equality_expression] = STATE(1146), - [sym_relational_expression] = STATE(1146), - [sym_sizeof_expression] = STATE(1146), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1146), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1146), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1146), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1146), - [sym_math_expression] = STATE(1146), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(3002), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(3002), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [891] = { - [sym_do_statement] = STATE(1147), - [sym_goto_statement] = STATE(1147), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1147), - [sym_continue_statement] = STATE(1147), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1147), - [sym_expression_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [892] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [893] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [894] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(3008), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [895] = { - [anon_sym_LPAREN2] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_RPAREN] = ACTIONS(3010), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_RBRACK] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(3010), - [anon_sym_CARET_EQ] = ACTIONS(3010), - [anon_sym_LT_LT_EQ] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3012), - [anon_sym_EQ_EQ] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(3012), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_DASH_EQ] = ACTIONS(3010), - [anon_sym_SLASH_EQ] = ACTIONS(3010), - [anon_sym_GT_GT_EQ] = ACTIONS(3010), - [anon_sym_STAR_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_PIPE_EQ] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3010), - [anon_sym_AMP_EQ] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_CARET] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DASH_GT] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [896] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3008), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3019), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [897] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(257), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3023), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(1776), }, [898] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [899] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3017), - }, - [900] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3019), - }, - [901] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(1151), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), - }, - [902] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), - }, - [903] = { - [sym_string_literal] = STATE(1152), - [aux_sym_concatenated_string_repeat1] = STATE(1152), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), - }, - [904] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1153), - [sym_logical_expression] = STATE(1153), - [sym_bitwise_expression] = STATE(1153), - [sym_cast_expression] = STATE(1153), - [sym_field_expression] = STATE(1153), - [sym_compound_literal_expression] = STATE(1153), - [sym_char_literal] = STATE(1153), - [sym_assignment_expression] = STATE(1153), - [sym_pointer_expression] = STATE(1153), - [sym_shift_expression] = STATE(1153), - [sym_math_expression] = STATE(1153), - [sym_call_expression] = STATE(1153), - [sym_conditional_expression] = STATE(1153), - [sym_equality_expression] = STATE(1153), - [sym_relational_expression] = STATE(1153), - [sym_sizeof_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_parenthesized_expression] = STATE(1153), - [sym_concatenated_string] = STATE(1153), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(879), - }, - [905] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1154), - [sym_logical_expression] = STATE(1154), - [sym_bitwise_expression] = STATE(1154), - [sym_cast_expression] = STATE(1154), - [sym_field_expression] = STATE(1154), - [sym_compound_literal_expression] = STATE(1154), - [sym_char_literal] = STATE(1154), - [sym_assignment_expression] = STATE(1154), - [sym_pointer_expression] = STATE(1154), - [sym_shift_expression] = STATE(1154), - [sym_math_expression] = STATE(1154), - [sym_call_expression] = STATE(1154), - [sym_conditional_expression] = STATE(1154), - [sym_equality_expression] = STATE(1154), - [sym_relational_expression] = STATE(1154), - [sym_sizeof_expression] = STATE(1154), - [sym_subscript_expression] = STATE(1154), - [sym_parenthesized_expression] = STATE(1154), - [sym_concatenated_string] = STATE(1154), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3033), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(879), - }, - [906] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1155), - [sym_logical_expression] = STATE(1155), - [sym_bitwise_expression] = STATE(1155), - [sym_cast_expression] = STATE(1155), - [sym_field_expression] = STATE(1155), - [sym_compound_literal_expression] = STATE(1155), - [sym_char_literal] = STATE(1155), - [sym_assignment_expression] = STATE(1155), - [sym_pointer_expression] = STATE(1155), - [sym_shift_expression] = STATE(1155), - [sym_math_expression] = STATE(1155), - [sym_call_expression] = STATE(1155), - [sym_conditional_expression] = STATE(1155), - [sym_equality_expression] = STATE(1155), - [sym_relational_expression] = STATE(1155), - [sym_sizeof_expression] = STATE(1155), - [sym_subscript_expression] = STATE(1155), - [sym_parenthesized_expression] = STATE(1155), - [sym_concatenated_string] = STATE(1155), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(879), - }, - [907] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1156), - [sym_logical_expression] = STATE(1156), - [sym_bitwise_expression] = STATE(1156), - [sym_cast_expression] = STATE(1156), - [sym_field_expression] = STATE(1156), - [sym_compound_literal_expression] = STATE(1156), - [sym_char_literal] = STATE(1156), - [sym_assignment_expression] = STATE(1156), - [sym_pointer_expression] = STATE(1156), - [sym_shift_expression] = STATE(1156), - [sym_math_expression] = STATE(1156), - [sym_call_expression] = STATE(1156), - [sym_conditional_expression] = STATE(1156), - [sym_equality_expression] = STATE(1156), - [sym_relational_expression] = STATE(1156), - [sym_sizeof_expression] = STATE(1156), - [sym_subscript_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(1156), - [sym_concatenated_string] = STATE(1156), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(879), - }, - [908] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1157), - [sym_logical_expression] = STATE(1157), - [sym_bitwise_expression] = STATE(1157), - [sym_cast_expression] = STATE(1157), - [sym_field_expression] = STATE(1157), - [sym_compound_literal_expression] = STATE(1157), - [sym_char_literal] = STATE(1157), - [sym_assignment_expression] = STATE(1157), - [sym_pointer_expression] = STATE(1157), - [sym_shift_expression] = STATE(1157), - [sym_math_expression] = STATE(1157), - [sym_call_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1157), - [sym_equality_expression] = STATE(1157), - [sym_relational_expression] = STATE(1157), - [sym_sizeof_expression] = STATE(1157), - [sym_subscript_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_concatenated_string] = STATE(1157), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(879), - }, - [909] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(1158), - [sym_logical_expression] = STATE(1158), - [sym_bitwise_expression] = STATE(1158), - [sym_cast_expression] = STATE(1158), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(1158), - [sym_char_literal] = STATE(1158), - [sym_assignment_expression] = STATE(1158), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(1158), - [sym_math_expression] = STATE(1158), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(1158), - [sym_equality_expression] = STATE(1158), - [sym_relational_expression] = STATE(1158), - [sym_sizeof_expression] = STATE(1158), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(1158), - [sym_concatenated_string] = STATE(1158), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(879), - }, - [910] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1159), - [sym_logical_expression] = STATE(1159), - [sym_bitwise_expression] = STATE(1159), - [sym_cast_expression] = STATE(1159), - [sym_field_expression] = STATE(1159), - [sym_compound_literal_expression] = STATE(1159), - [sym_char_literal] = STATE(1159), - [sym_assignment_expression] = STATE(1159), - [sym_pointer_expression] = STATE(1159), - [sym_shift_expression] = STATE(1159), - [sym_math_expression] = STATE(1159), - [sym_call_expression] = STATE(1159), - [sym_conditional_expression] = STATE(1159), - [sym_equality_expression] = STATE(1159), - [sym_relational_expression] = STATE(1159), - [sym_sizeof_expression] = STATE(1159), - [sym_subscript_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(1159), - [sym_concatenated_string] = STATE(1159), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(879), - }, - [911] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1160), + [sym_concatenated_string] = STATE(1160), + [sym_pointer_expression] = STATE(119), [sym_logical_expression] = STATE(1160), - [sym_bitwise_expression] = STATE(1160), + [sym_math_expression] = STATE(1160), [sym_cast_expression] = STATE(1160), - [sym_field_expression] = STATE(1160), - [sym_compound_literal_expression] = STATE(1160), - [sym_char_literal] = STATE(1160), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1160), [sym_assignment_expression] = STATE(1160), - [sym_pointer_expression] = STATE(1160), + [sym_relational_expression] = STATE(1160), [sym_shift_expression] = STATE(1160), - [sym_math_expression] = STATE(1160), - [sym_call_expression] = STATE(1160), - [sym_conditional_expression] = STATE(1160), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1160), + [sym_bitwise_expression] = STATE(1160), [sym_equality_expression] = STATE(1160), - [sym_relational_expression] = STATE(1160), [sym_sizeof_expression] = STATE(1160), - [sym_subscript_expression] = STATE(1160), + [sym_compound_literal_expression] = STATE(1160), [sym_parenthesized_expression] = STATE(1160), - [sym_concatenated_string] = STATE(1160), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(879), + [sym_char_literal] = STATE(1160), + [sym_null] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3025), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [sym_true] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, - [912] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(911), + [899] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3029), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(879), - }, - [913] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1161), - [sym_logical_expression] = STATE(1161), - [sym_bitwise_expression] = STATE(1161), - [sym_cast_expression] = STATE(1161), - [sym_field_expression] = STATE(1161), - [sym_compound_literal_expression] = STATE(1161), - [sym_char_literal] = STATE(1161), - [sym_assignment_expression] = STATE(1161), - [sym_pointer_expression] = STATE(1161), - [sym_shift_expression] = STATE(1161), - [sym_math_expression] = STATE(1161), - [sym_call_expression] = STATE(1161), - [sym_conditional_expression] = STATE(1161), - [sym_equality_expression] = STATE(1161), - [sym_relational_expression] = STATE(1161), - [sym_sizeof_expression] = STATE(1161), - [sym_subscript_expression] = STATE(1161), - [sym_parenthesized_expression] = STATE(1161), - [sym_concatenated_string] = STATE(1161), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(879), - }, - [914] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1162), - [sym_logical_expression] = STATE(1162), - [sym_bitwise_expression] = STATE(1162), - [sym_cast_expression] = STATE(1162), - [sym_field_expression] = STATE(1162), - [sym_compound_literal_expression] = STATE(1162), - [sym_char_literal] = STATE(1162), - [sym_assignment_expression] = STATE(1162), - [sym_pointer_expression] = STATE(1162), - [sym_shift_expression] = STATE(1162), - [sym_math_expression] = STATE(1162), - [sym_call_expression] = STATE(1162), - [sym_conditional_expression] = STATE(1162), - [sym_equality_expression] = STATE(1162), - [sym_relational_expression] = STATE(1162), - [sym_sizeof_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_parenthesized_expression] = STATE(1162), - [sym_concatenated_string] = STATE(1162), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3063), - [sym_true] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(879), - }, - [915] = { - [sym_string_literal] = STATE(915), - [aux_sym_concatenated_string_repeat1] = STATE(915), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), }, - [916] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [900] = { + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3031), + [sym_preproc_arg] = ACTIONS(3033), }, - [917] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), + [901] = { + [aux_sym_preproc_params_repeat1] = STATE(1163), + [anon_sym_COMMA] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [918] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [919] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [920] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(308), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(322), - }, - [921] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), }, - [922] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [902] = { + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_null] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3037), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym__Atomic] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3037), + [sym_number_literal] = ACTIONS(3037), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), }, - [923] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), + [903] = { [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(3041), }, - [924] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [925] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [926] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [904] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1166), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, - [927] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(1015), + [905] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_RBRACK] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, - [928] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1055), + [906] = { + [aux_sym_concatenated_string_repeat1] = STATE(1167), + [sym_string_literal] = STATE(1167), + [anon_sym_PERCENT] = ACTIONS(712), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, - [929] = { + [907] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(847), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [930] = { + [908] = { + [sym_concatenated_string] = STATE(1168), + [sym_pointer_expression] = STATE(1168), + [sym_logical_expression] = STATE(1168), + [sym_math_expression] = STATE(1168), + [sym_cast_expression] = STATE(1168), + [sym_field_expression] = STATE(1168), + [sym_conditional_expression] = STATE(1168), + [sym_assignment_expression] = STATE(1168), + [sym_relational_expression] = STATE(1168), + [sym_shift_expression] = STATE(1168), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1168), + [sym_bitwise_expression] = STATE(1168), + [sym_equality_expression] = STATE(1168), + [sym_sizeof_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(1168), + [sym_parenthesized_expression] = STATE(1168), + [sym_char_literal] = STATE(1168), + [sym_null] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3051), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3073), - }, - [931] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(1167), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), - }, - [932] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(615), - }, - [933] = { - [sym_string_literal] = STATE(1168), - [aux_sym_concatenated_string_repeat1] = STATE(1168), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [934] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1169), + [909] = { + [sym_concatenated_string] = STATE(1169), + [sym_pointer_expression] = STATE(1169), [sym_logical_expression] = STATE(1169), - [sym_bitwise_expression] = STATE(1169), + [sym_math_expression] = STATE(1169), [sym_cast_expression] = STATE(1169), [sym_field_expression] = STATE(1169), - [sym_compound_literal_expression] = STATE(1169), - [sym_char_literal] = STATE(1169), + [sym_conditional_expression] = STATE(1169), [sym_assignment_expression] = STATE(1169), - [sym_pointer_expression] = STATE(1169), + [sym_relational_expression] = STATE(1169), [sym_shift_expression] = STATE(1169), - [sym_math_expression] = STATE(1169), + [sym_subscript_expression] = STATE(1169), [sym_call_expression] = STATE(1169), - [sym_conditional_expression] = STATE(1169), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1169), + [sym_bitwise_expression] = STATE(1169), [sym_equality_expression] = STATE(1169), - [sym_relational_expression] = STATE(1169), [sym_sizeof_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), + [sym_compound_literal_expression] = STATE(1169), [sym_parenthesized_expression] = STATE(1169), - [sym_concatenated_string] = STATE(1169), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3083), + [sym_char_literal] = STATE(1169), + [sym_null] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3055), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3053), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [935] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1170), + [910] = { + [sym_concatenated_string] = STATE(1170), + [sym_pointer_expression] = STATE(1170), [sym_logical_expression] = STATE(1170), - [sym_bitwise_expression] = STATE(1170), + [sym_math_expression] = STATE(1170), [sym_cast_expression] = STATE(1170), [sym_field_expression] = STATE(1170), - [sym_compound_literal_expression] = STATE(1170), - [sym_char_literal] = STATE(1170), + [sym_conditional_expression] = STATE(1170), [sym_assignment_expression] = STATE(1170), - [sym_pointer_expression] = STATE(1170), + [sym_relational_expression] = STATE(1170), [sym_shift_expression] = STATE(1170), - [sym_math_expression] = STATE(1170), + [sym_subscript_expression] = STATE(1170), [sym_call_expression] = STATE(1170), - [sym_conditional_expression] = STATE(1170), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1170), + [sym_bitwise_expression] = STATE(1170), [sym_equality_expression] = STATE(1170), - [sym_relational_expression] = STATE(1170), [sym_sizeof_expression] = STATE(1170), - [sym_subscript_expression] = STATE(1170), + [sym_compound_literal_expression] = STATE(1170), [sym_parenthesized_expression] = STATE(1170), - [sym_concatenated_string] = STATE(1170), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3087), + [sym_char_literal] = STATE(1170), + [sym_null] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3059), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [936] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1171), + [911] = { + [sym_concatenated_string] = STATE(1171), + [sym_pointer_expression] = STATE(1171), [sym_logical_expression] = STATE(1171), - [sym_bitwise_expression] = STATE(1171), + [sym_math_expression] = STATE(1171), [sym_cast_expression] = STATE(1171), [sym_field_expression] = STATE(1171), - [sym_compound_literal_expression] = STATE(1171), - [sym_char_literal] = STATE(1171), + [sym_conditional_expression] = STATE(1171), [sym_assignment_expression] = STATE(1171), - [sym_pointer_expression] = STATE(1171), + [sym_relational_expression] = STATE(1171), [sym_shift_expression] = STATE(1171), - [sym_math_expression] = STATE(1171), + [sym_subscript_expression] = STATE(1171), [sym_call_expression] = STATE(1171), - [sym_conditional_expression] = STATE(1171), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1171), + [sym_bitwise_expression] = STATE(1171), [sym_equality_expression] = STATE(1171), - [sym_relational_expression] = STATE(1171), [sym_sizeof_expression] = STATE(1171), - [sym_subscript_expression] = STATE(1171), + [sym_compound_literal_expression] = STATE(1171), [sym_parenthesized_expression] = STATE(1171), - [sym_concatenated_string] = STATE(1171), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(1171), + [sym_null] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3061), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [937] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1172), + [912] = { + [sym_concatenated_string] = STATE(1172), + [sym_pointer_expression] = STATE(1172), [sym_logical_expression] = STATE(1172), - [sym_bitwise_expression] = STATE(1172), + [sym_math_expression] = STATE(1172), [sym_cast_expression] = STATE(1172), [sym_field_expression] = STATE(1172), - [sym_compound_literal_expression] = STATE(1172), - [sym_char_literal] = STATE(1172), + [sym_conditional_expression] = STATE(1172), [sym_assignment_expression] = STATE(1172), - [sym_pointer_expression] = STATE(1172), + [sym_relational_expression] = STATE(1172), [sym_shift_expression] = STATE(1172), - [sym_math_expression] = STATE(1172), + [sym_subscript_expression] = STATE(1172), [sym_call_expression] = STATE(1172), - [sym_conditional_expression] = STATE(1172), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1172), + [sym_bitwise_expression] = STATE(1172), [sym_equality_expression] = STATE(1172), - [sym_relational_expression] = STATE(1172), [sym_sizeof_expression] = STATE(1172), - [sym_subscript_expression] = STATE(1172), + [sym_compound_literal_expression] = STATE(1172), [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3095), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(1172), + [sym_null] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3067), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [938] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1173), + [913] = { + [sym_concatenated_string] = STATE(1173), + [sym_pointer_expression] = STATE(1173), [sym_logical_expression] = STATE(1173), - [sym_bitwise_expression] = STATE(1173), + [sym_math_expression] = STATE(1173), [sym_cast_expression] = STATE(1173), [sym_field_expression] = STATE(1173), - [sym_compound_literal_expression] = STATE(1173), - [sym_char_literal] = STATE(1173), + [sym_conditional_expression] = STATE(1173), [sym_assignment_expression] = STATE(1173), - [sym_pointer_expression] = STATE(1173), + [sym_relational_expression] = STATE(1173), [sym_shift_expression] = STATE(1173), - [sym_math_expression] = STATE(1173), + [sym_subscript_expression] = STATE(1173), [sym_call_expression] = STATE(1173), - [sym_conditional_expression] = STATE(1173), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1173), + [sym_bitwise_expression] = STATE(1173), [sym_equality_expression] = STATE(1173), - [sym_relational_expression] = STATE(1173), [sym_sizeof_expression] = STATE(1173), - [sym_subscript_expression] = STATE(1173), + [sym_compound_literal_expression] = STATE(1173), [sym_parenthesized_expression] = STATE(1173), - [sym_concatenated_string] = STATE(1173), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(1173), + [sym_null] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3069), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [939] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(1174), + [914] = { + [sym_concatenated_string] = STATE(1174), + [sym_pointer_expression] = STATE(1174), [sym_logical_expression] = STATE(1174), - [sym_bitwise_expression] = STATE(1174), + [sym_math_expression] = STATE(1174), [sym_cast_expression] = STATE(1174), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(1174), - [sym_char_literal] = STATE(1174), + [sym_field_expression] = STATE(1174), + [sym_conditional_expression] = STATE(1174), [sym_assignment_expression] = STATE(1174), - [sym_pointer_expression] = STATE(346), + [sym_relational_expression] = STATE(1174), [sym_shift_expression] = STATE(1174), - [sym_math_expression] = STATE(1174), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_call_expression] = STATE(1174), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1174), + [sym_bitwise_expression] = STATE(1174), [sym_equality_expression] = STATE(1174), - [sym_relational_expression] = STATE(1174), [sym_sizeof_expression] = STATE(1174), - [sym_subscript_expression] = STATE(346), + [sym_compound_literal_expression] = STATE(1174), [sym_parenthesized_expression] = STATE(1174), - [sym_concatenated_string] = STATE(1174), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(3103), + [sym_char_literal] = STATE(1174), + [sym_null] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3075), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [940] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1175), + [915] = { + [sym_concatenated_string] = STATE(1175), + [sym_pointer_expression] = STATE(1175), [sym_logical_expression] = STATE(1175), - [sym_bitwise_expression] = STATE(1175), + [sym_math_expression] = STATE(1175), [sym_cast_expression] = STATE(1175), [sym_field_expression] = STATE(1175), - [sym_compound_literal_expression] = STATE(1175), - [sym_char_literal] = STATE(1175), + [sym_conditional_expression] = STATE(1175), [sym_assignment_expression] = STATE(1175), - [sym_pointer_expression] = STATE(1175), + [sym_relational_expression] = STATE(1175), [sym_shift_expression] = STATE(1175), - [sym_math_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), [sym_call_expression] = STATE(1175), - [sym_conditional_expression] = STATE(1175), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1175), + [sym_bitwise_expression] = STATE(1175), [sym_equality_expression] = STATE(1175), - [sym_relational_expression] = STATE(1175), [sym_sizeof_expression] = STATE(1175), - [sym_subscript_expression] = STATE(1175), + [sym_compound_literal_expression] = STATE(1175), [sym_parenthesized_expression] = STATE(1175), - [sym_concatenated_string] = STATE(1175), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(1175), + [sym_null] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [941] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1176), + [916] = { + [sym_concatenated_string] = STATE(1176), + [sym_pointer_expression] = STATE(1176), [sym_logical_expression] = STATE(1176), - [sym_bitwise_expression] = STATE(1176), + [sym_math_expression] = STATE(1176), [sym_cast_expression] = STATE(1176), [sym_field_expression] = STATE(1176), - [sym_compound_literal_expression] = STATE(1176), - [sym_char_literal] = STATE(1176), + [sym_conditional_expression] = STATE(1176), [sym_assignment_expression] = STATE(1176), - [sym_pointer_expression] = STATE(1176), + [sym_relational_expression] = STATE(1176), [sym_shift_expression] = STATE(1176), - [sym_math_expression] = STATE(1176), + [sym_subscript_expression] = STATE(1176), [sym_call_expression] = STATE(1176), - [sym_conditional_expression] = STATE(1176), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1176), + [sym_bitwise_expression] = STATE(1176), [sym_equality_expression] = STATE(1176), - [sym_relational_expression] = STATE(1176), [sym_sizeof_expression] = STATE(1176), - [sym_subscript_expression] = STATE(1176), + [sym_compound_literal_expression] = STATE(1176), [sym_parenthesized_expression] = STATE(1176), - [sym_concatenated_string] = STATE(1176), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(907), - }, - [942] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(911), + [sym_char_literal] = STATE(1176), + [sym_null] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, - [943] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1177), + [917] = { + [sym_concatenated_string] = STATE(1177), + [sym_pointer_expression] = STATE(365), [sym_logical_expression] = STATE(1177), - [sym_bitwise_expression] = STATE(1177), + [sym_math_expression] = STATE(1177), [sym_cast_expression] = STATE(1177), - [sym_field_expression] = STATE(1177), - [sym_compound_literal_expression] = STATE(1177), - [sym_char_literal] = STATE(1177), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(1177), [sym_assignment_expression] = STATE(1177), - [sym_pointer_expression] = STATE(1177), + [sym_relational_expression] = STATE(1177), [sym_shift_expression] = STATE(1177), - [sym_math_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_conditional_expression] = STATE(1177), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(1177), + [sym_bitwise_expression] = STATE(1177), [sym_equality_expression] = STATE(1177), - [sym_relational_expression] = STATE(1177), [sym_sizeof_expression] = STATE(1177), - [sym_subscript_expression] = STATE(1177), + [sym_compound_literal_expression] = STATE(1177), [sym_parenthesized_expression] = STATE(1177), - [sym_concatenated_string] = STATE(1177), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(907), + [sym_char_literal] = STATE(1177), + [sym_null] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3085), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, - [944] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1178), - [sym_logical_expression] = STATE(1178), - [sym_bitwise_expression] = STATE(1178), - [sym_cast_expression] = STATE(1178), - [sym_field_expression] = STATE(1178), - [sym_compound_literal_expression] = STATE(1178), - [sym_char_literal] = STATE(1178), - [sym_assignment_expression] = STATE(1178), - [sym_pointer_expression] = STATE(1178), - [sym_shift_expression] = STATE(1178), - [sym_math_expression] = STATE(1178), - [sym_call_expression] = STATE(1178), - [sym_conditional_expression] = STATE(1178), - [sym_equality_expression] = STATE(1178), - [sym_relational_expression] = STATE(1178), - [sym_sizeof_expression] = STATE(1178), - [sym_subscript_expression] = STATE(1178), - [sym_parenthesized_expression] = STATE(1178), - [sym_concatenated_string] = STATE(1178), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(907), + [918] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, - [945] = { - [sym_string_literal] = STATE(945), - [aux_sym_concatenated_string_repeat1] = STATE(945), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(1475), + [919] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [946] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1496), + [920] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3089), }, - [947] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1502), + [921] = { + [aux_sym_concatenated_string_repeat1] = STATE(921), + [sym_string_literal] = STATE(921), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_RBRACK] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), + }, + [922] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [923] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_RBRACK] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [924] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [925] = { + [sym_argument_list] = STATE(154), [anon_sym_QMARK] = ACTIONS(1500), [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1534), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1498), [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1498), [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [926] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [927] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [928] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [929] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [930] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [931] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [932] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [933] = { + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_RBRACK] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3097), + [anon_sym_AMP_EQ] = ACTIONS(3097), + [anon_sym_DASH_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_PLUS_EQ] = ACTIONS(3097), + [anon_sym_STAR_EQ] = ACTIONS(3097), + [anon_sym_LT_LT_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3097), + [anon_sym_CARET_EQ] = ACTIONS(3097), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_SLASH_EQ] = ACTIONS(3097), + [anon_sym_GT_GT_EQ] = ACTIONS(3097), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_PIPE_EQ] = ACTIONS(3097), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_RPAREN] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + }, + [934] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + }, + [935] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3102), + }, + [936] = { + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1182), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [937] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(372), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [938] = { + [aux_sym_concatenated_string_repeat1] = STATE(1183), + [sym_string_literal] = STATE(1183), + [anon_sym_PERCENT] = ACTIONS(712), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_COLON] = ACTIONS(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), + }, + [939] = { + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [940] = { + [sym_concatenated_string] = STATE(1184), + [sym_pointer_expression] = STATE(1184), + [sym_logical_expression] = STATE(1184), + [sym_math_expression] = STATE(1184), + [sym_cast_expression] = STATE(1184), + [sym_field_expression] = STATE(1184), + [sym_conditional_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_relational_expression] = STATE(1184), + [sym_shift_expression] = STATE(1184), + [sym_subscript_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1184), + [sym_bitwise_expression] = STATE(1184), + [sym_equality_expression] = STATE(1184), + [sym_sizeof_expression] = STATE(1184), + [sym_compound_literal_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_char_literal] = STATE(1184), + [sym_null] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [941] = { + [sym_concatenated_string] = STATE(1185), + [sym_pointer_expression] = STATE(1185), + [sym_logical_expression] = STATE(1185), + [sym_math_expression] = STATE(1185), + [sym_cast_expression] = STATE(1185), + [sym_field_expression] = STATE(1185), + [sym_conditional_expression] = STATE(1185), + [sym_assignment_expression] = STATE(1185), + [sym_relational_expression] = STATE(1185), + [sym_shift_expression] = STATE(1185), + [sym_subscript_expression] = STATE(1185), + [sym_call_expression] = STATE(1185), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1185), + [sym_bitwise_expression] = STATE(1185), + [sym_equality_expression] = STATE(1185), + [sym_sizeof_expression] = STATE(1185), + [sym_compound_literal_expression] = STATE(1185), + [sym_parenthesized_expression] = STATE(1185), + [sym_char_literal] = STATE(1185), + [sym_null] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [942] = { + [sym_concatenated_string] = STATE(1186), + [sym_pointer_expression] = STATE(1186), + [sym_logical_expression] = STATE(1186), + [sym_math_expression] = STATE(1186), + [sym_cast_expression] = STATE(1186), + [sym_field_expression] = STATE(1186), + [sym_conditional_expression] = STATE(1186), + [sym_assignment_expression] = STATE(1186), + [sym_relational_expression] = STATE(1186), + [sym_shift_expression] = STATE(1186), + [sym_subscript_expression] = STATE(1186), + [sym_call_expression] = STATE(1186), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1186), + [sym_bitwise_expression] = STATE(1186), + [sym_equality_expression] = STATE(1186), + [sym_sizeof_expression] = STATE(1186), + [sym_compound_literal_expression] = STATE(1186), + [sym_parenthesized_expression] = STATE(1186), + [sym_char_literal] = STATE(1186), + [sym_null] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [943] = { + [sym_concatenated_string] = STATE(1187), + [sym_pointer_expression] = STATE(1187), + [sym_logical_expression] = STATE(1187), + [sym_math_expression] = STATE(1187), + [sym_cast_expression] = STATE(1187), + [sym_field_expression] = STATE(1187), + [sym_conditional_expression] = STATE(1187), + [sym_assignment_expression] = STATE(1187), + [sym_relational_expression] = STATE(1187), + [sym_shift_expression] = STATE(1187), + [sym_subscript_expression] = STATE(1187), + [sym_call_expression] = STATE(1187), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1187), + [sym_bitwise_expression] = STATE(1187), + [sym_equality_expression] = STATE(1187), + [sym_sizeof_expression] = STATE(1187), + [sym_compound_literal_expression] = STATE(1187), + [sym_parenthesized_expression] = STATE(1187), + [sym_char_literal] = STATE(1187), + [sym_null] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3122), + [sym_identifier] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [944] = { + [sym_concatenated_string] = STATE(1188), + [sym_pointer_expression] = STATE(1188), + [sym_logical_expression] = STATE(1188), + [sym_math_expression] = STATE(1188), + [sym_cast_expression] = STATE(1188), + [sym_field_expression] = STATE(1188), + [sym_conditional_expression] = STATE(1188), + [sym_assignment_expression] = STATE(1188), + [sym_relational_expression] = STATE(1188), + [sym_shift_expression] = STATE(1188), + [sym_subscript_expression] = STATE(1188), + [sym_call_expression] = STATE(1188), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1188), + [sym_bitwise_expression] = STATE(1188), + [sym_equality_expression] = STATE(1188), + [sym_sizeof_expression] = STATE(1188), + [sym_compound_literal_expression] = STATE(1188), + [sym_parenthesized_expression] = STATE(1188), + [sym_char_literal] = STATE(1188), + [sym_null] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3126), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [945] = { + [sym_concatenated_string] = STATE(1189), + [sym_pointer_expression] = STATE(1189), + [sym_logical_expression] = STATE(1189), + [sym_math_expression] = STATE(1189), + [sym_cast_expression] = STATE(1189), + [sym_field_expression] = STATE(1189), + [sym_conditional_expression] = STATE(1189), + [sym_assignment_expression] = STATE(1189), + [sym_relational_expression] = STATE(1189), + [sym_shift_expression] = STATE(1189), + [sym_subscript_expression] = STATE(1189), + [sym_call_expression] = STATE(1189), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1189), + [sym_bitwise_expression] = STATE(1189), + [sym_equality_expression] = STATE(1189), + [sym_sizeof_expression] = STATE(1189), + [sym_compound_literal_expression] = STATE(1189), + [sym_parenthesized_expression] = STATE(1189), + [sym_char_literal] = STATE(1189), + [sym_null] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [946] = { + [sym_concatenated_string] = STATE(1190), + [sym_pointer_expression] = STATE(1190), + [sym_logical_expression] = STATE(1190), + [sym_math_expression] = STATE(1190), + [sym_cast_expression] = STATE(1190), + [sym_field_expression] = STATE(1190), + [sym_conditional_expression] = STATE(1190), + [sym_assignment_expression] = STATE(1190), + [sym_relational_expression] = STATE(1190), + [sym_shift_expression] = STATE(1190), + [sym_subscript_expression] = STATE(1190), + [sym_call_expression] = STATE(1190), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1190), + [sym_bitwise_expression] = STATE(1190), + [sym_equality_expression] = STATE(1190), + [sym_sizeof_expression] = STATE(1190), + [sym_compound_literal_expression] = STATE(1190), + [sym_parenthesized_expression] = STATE(1190), + [sym_char_literal] = STATE(1190), + [sym_null] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), + }, + [947] = { + [sym_concatenated_string] = STATE(1191), + [sym_pointer_expression] = STATE(1191), + [sym_logical_expression] = STATE(1191), + [sym_math_expression] = STATE(1191), + [sym_cast_expression] = STATE(1191), + [sym_field_expression] = STATE(1191), + [sym_conditional_expression] = STATE(1191), + [sym_assignment_expression] = STATE(1191), + [sym_relational_expression] = STATE(1191), + [sym_shift_expression] = STATE(1191), + [sym_subscript_expression] = STATE(1191), + [sym_call_expression] = STATE(1191), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1191), + [sym_bitwise_expression] = STATE(1191), + [sym_equality_expression] = STATE(1191), + [sym_sizeof_expression] = STATE(1191), + [sym_compound_literal_expression] = STATE(1191), + [sym_parenthesized_expression] = STATE(1191), + [sym_char_literal] = STATE(1191), + [sym_null] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, [948] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1504), + [sym_concatenated_string] = STATE(1192), + [sym_pointer_expression] = STATE(1192), + [sym_logical_expression] = STATE(1192), + [sym_math_expression] = STATE(1192), + [sym_cast_expression] = STATE(1192), + [sym_field_expression] = STATE(1192), + [sym_conditional_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_relational_expression] = STATE(1192), + [sym_shift_expression] = STATE(1192), + [sym_subscript_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1192), + [sym_bitwise_expression] = STATE(1192), + [sym_equality_expression] = STATE(1192), + [sym_sizeof_expression] = STATE(1192), + [sym_compound_literal_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_char_literal] = STATE(1192), + [sym_null] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3142), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, [949] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1506), + [sym_concatenated_string] = STATE(1193), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(1193), + [sym_math_expression] = STATE(1193), + [sym_cast_expression] = STATE(1193), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(1193), + [sym_assignment_expression] = STATE(1193), + [sym_relational_expression] = STATE(1193), + [sym_shift_expression] = STATE(1193), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(1193), + [sym_bitwise_expression] = STATE(1193), + [sym_equality_expression] = STATE(1193), + [sym_sizeof_expression] = STATE(1193), + [sym_compound_literal_expression] = STATE(1193), + [sym_parenthesized_expression] = STATE(1193), + [sym_char_literal] = STATE(1193), + [sym_null] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3146), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [950] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1512), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [951] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [952] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3150), }, [953] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1504), + [aux_sym_concatenated_string_repeat1] = STATE(953), + [sym_string_literal] = STATE(953), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [954] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [955] = { + [sym_argument_list] = STATE(154), [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), [anon_sym_AMP] = ACTIONS(1508), [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1506), - }, - [955] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(1626), [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [956] = { - [anon_sym_LPAREN2] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [957] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(3125), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [958] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3125), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [959] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(3127), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [960] = { - [sym_string_literal] = STATE(166), - [sym__expression] = STATE(1181), - [sym_logical_expression] = STATE(1181), - [sym_bitwise_expression] = STATE(1181), - [sym_cast_expression] = STATE(1181), - [sym_field_expression] = STATE(1181), - [sym_compound_literal_expression] = STATE(1181), - [sym_char_literal] = STATE(1181), - [sym_assignment_expression] = STATE(1181), - [sym_pointer_expression] = STATE(1181), - [sym_shift_expression] = STATE(1181), - [sym_math_expression] = STATE(1181), - [sym_call_expression] = STATE(1181), - [sym_conditional_expression] = STATE(1181), - [sym_equality_expression] = STATE(1181), - [sym_relational_expression] = STATE(1181), - [sym_sizeof_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_parenthesized_expression] = STATE(1181), - [sym_concatenated_string] = STATE(1181), - [anon_sym_DASH_DASH] = ACTIONS(348), - [anon_sym_LPAREN2] = ACTIONS(350), - [sym_identifier] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_sizeof] = ACTIONS(354), - [sym_null] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(358), - [sym_number_literal] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(348), - [sym_false] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(107), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [961] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [962] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3133), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [963] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1183), - [sym_logical_expression] = STATE(1183), - [sym_bitwise_expression] = STATE(1183), - [sym_cast_expression] = STATE(1183), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1183), - [sym_char_literal] = STATE(1183), - [sym_assignment_expression] = STATE(1183), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1183), - [sym_math_expression] = STATE(1183), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1183), - [sym_equality_expression] = STATE(1183), - [sym_relational_expression] = STATE(1183), - [sym_sizeof_expression] = STATE(1183), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1183), - [sym_concatenated_string] = STATE(1183), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(1732), + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_COMMA] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(300), }, [964] = { - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_CARET_EQ] = ACTIONS(3139), - [anon_sym_LT_LT_EQ] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_GT_GT_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_EQ] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_AMP_EQ] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3139), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [965] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(1184), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_parameter_list] = STATE(668), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), }, [966] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym_attribute_specifier] = STATE(1196), + [aux_sym_function_declarator_repeat1] = STATE(1196), + [anon_sym_RPAREN] = ACTIONS(2426), + [anon_sym_LPAREN2] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(2426), }, [967] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_COMMA] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_RPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), }, [968] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(44), - [sym_logical_expression] = STATE(44), - [sym_bitwise_expression] = STATE(44), - [sym_cast_expression] = STATE(44), - [sym_field_expression] = STATE(44), - [sym_compound_literal_expression] = STATE(44), - [sym_char_literal] = STATE(44), - [sym_assignment_expression] = STATE(44), - [sym_pointer_expression] = STATE(44), - [sym_shift_expression] = STATE(44), - [sym_math_expression] = STATE(44), - [sym_call_expression] = STATE(44), - [sym_conditional_expression] = STATE(44), - [sym_equality_expression] = STATE(44), - [sym_relational_expression] = STATE(44), - [sym_sizeof_expression] = STATE(44), - [sym_subscript_expression] = STATE(44), - [sym_parenthesized_expression] = STATE(44), - [sym_concatenated_string] = STATE(44), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(85), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(1732), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [969] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(1186), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [970] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1188), - [sym_logical_expression] = STATE(1188), - [sym_bitwise_expression] = STATE(1188), - [sym_cast_expression] = STATE(1188), - [sym_field_expression] = STATE(1188), - [sym_compound_literal_expression] = STATE(1188), - [sym_char_literal] = STATE(1188), - [sym_assignment_expression] = STATE(1188), - [sym_pointer_expression] = STATE(1188), - [sym_shift_expression] = STATE(1188), - [sym_math_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_conditional_expression] = STATE(1188), - [sym_equality_expression] = STATE(1188), - [sym_relational_expression] = STATE(1188), - [sym_sizeof_expression] = STATE(1188), - [sym_subscript_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_concatenated_string] = STATE(1188), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(1732), + [sym_attribute_specifier] = STATE(970), + [aux_sym_function_declarator_repeat1] = STATE(970), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), }, [971] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(87), - [sym_logical_expression] = STATE(87), - [sym_bitwise_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(87), - [sym_compound_literal_expression] = STATE(87), - [sym_char_literal] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_pointer_expression] = STATE(87), - [sym_shift_expression] = STATE(87), - [sym_math_expression] = STATE(87), - [sym_call_expression] = STATE(87), - [sym_conditional_expression] = STATE(87), - [sym_equality_expression] = STATE(87), - [sym_relational_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(87), - [sym_parenthesized_expression] = STATE(87), - [sym_concatenated_string] = STATE(87), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(1732), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [972] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(67), - [sym_logical_expression] = STATE(67), - [sym_bitwise_expression] = STATE(67), - [sym_cast_expression] = STATE(67), - [sym_field_expression] = STATE(67), - [sym_compound_literal_expression] = STATE(67), - [sym_char_literal] = STATE(67), - [sym_assignment_expression] = STATE(67), - [sym_pointer_expression] = STATE(67), - [sym_shift_expression] = STATE(67), - [sym_math_expression] = STATE(67), - [sym_call_expression] = STATE(67), - [sym_conditional_expression] = STATE(67), - [sym_equality_expression] = STATE(67), - [sym_relational_expression] = STATE(67), - [sym_sizeof_expression] = STATE(67), - [sym_subscript_expression] = STATE(67), - [sym_parenthesized_expression] = STATE(67), - [sym_concatenated_string] = STATE(67), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_for_statement_repeat1] = STATE(1199), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [973] = { - [sym_string_literal] = STATE(1189), - [aux_sym_concatenated_string_repeat1] = STATE(1189), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_PLUS_EQ] = ACTIONS(115), - [anon_sym_CARET_EQ] = ACTIONS(115), - [anon_sym_LT_LT_EQ] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(115), - [anon_sym_SLASH_EQ] = ACTIONS(115), - [anon_sym_GT_GT_EQ] = ACTIONS(115), - [anon_sym_STAR_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(115), - [anon_sym_AMP_EQ] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(1200), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1200), + [sym_math_expression] = STATE(1200), + [sym_cast_expression] = STATE(1200), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1200), + [sym_assignment_expression] = STATE(1200), + [sym_relational_expression] = STATE(1200), + [sym_shift_expression] = STATE(1200), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1200), + [sym_bitwise_expression] = STATE(1200), + [sym_equality_expression] = STATE(1200), + [sym_sizeof_expression] = STATE(1200), + [sym_compound_literal_expression] = STATE(1200), + [sym_parenthesized_expression] = STATE(1200), + [sym_char_literal] = STATE(1200), + [sym_null] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3167), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3167), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [974] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [975] = { - [sym_string_literal] = STATE(1201), - [aux_sym_concatenated_string_repeat1] = STATE(1201), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(3173), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [976] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1202), - [sym_logical_expression] = STATE(1202), - [sym_bitwise_expression] = STATE(1202), - [sym_cast_expression] = STATE(1202), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1202), - [sym_char_literal] = STATE(1202), - [sym_assignment_expression] = STATE(1202), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1202), - [sym_math_expression] = STATE(1202), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1202), - [sym_equality_expression] = STATE(1202), - [sym_relational_expression] = STATE(1202), - [sym_sizeof_expression] = STATE(1202), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1202), - [sym_concatenated_string] = STATE(1202), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(1732), - }, - [977] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1203), - [sym_logical_expression] = STATE(1203), - [sym_bitwise_expression] = STATE(1203), - [sym_cast_expression] = STATE(1203), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1203), - [sym_char_literal] = STATE(1203), - [sym_assignment_expression] = STATE(1203), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1203), - [sym_math_expression] = STATE(1203), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_relational_expression] = STATE(1203), - [sym_sizeof_expression] = STATE(1203), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1203), - [sym_concatenated_string] = STATE(1203), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3159), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(1732), - }, - [978] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1204), + [sym_concatenated_string] = STATE(1204), + [sym_pointer_expression] = STATE(119), [sym_logical_expression] = STATE(1204), - [sym_bitwise_expression] = STATE(1204), + [sym_math_expression] = STATE(1204), [sym_cast_expression] = STATE(1204), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1204), - [sym_char_literal] = STATE(1204), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1204), [sym_assignment_expression] = STATE(1204), - [sym_pointer_expression] = STATE(691), + [sym_relational_expression] = STATE(1204), [sym_shift_expression] = STATE(1204), - [sym_math_expression] = STATE(1204), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1204), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1204), + [sym_bitwise_expression] = STATE(1204), [sym_equality_expression] = STATE(1204), - [sym_relational_expression] = STATE(1204), [sym_sizeof_expression] = STATE(1204), - [sym_subscript_expression] = STATE(691), + [sym_compound_literal_expression] = STATE(1204), [sym_parenthesized_expression] = STATE(1204), - [sym_concatenated_string] = STATE(1204), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(1732), + [sym_char_literal] = STATE(1204), + [sym_null] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3177), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3175), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3179), + [sym_true] = ACTIONS(3175), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), + }, + [977] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [978] = { + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(1207), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1207), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1207), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1208), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1208), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(1207), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1207), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1207), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1207), + [sym_field_declaration] = STATE(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [979] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1206), - [sym_logical_expression] = STATE(1206), - [sym_bitwise_expression] = STATE(1206), - [sym_cast_expression] = STATE(1206), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1206), - [sym_field_designator] = STATE(702), - [sym_char_literal] = STATE(1206), - [sym_assignment_expression] = STATE(1206), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1206), - [sym_math_expression] = STATE(1206), - [sym_call_expression] = STATE(691), - [aux_sym_initializer_pair_repeat1] = STATE(702), - [sym_initializer_pair] = STATE(1207), - [sym_subscript_designator] = STATE(702), - [sym_conditional_expression] = STATE(1206), - [sym_equality_expression] = STATE(1206), - [sym_relational_expression] = STATE(1206), - [sym_sizeof_expression] = STATE(1206), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1206), - [sym_initializer_list] = STATE(1207), - [sym_concatenated_string] = STATE(1206), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [sym_null] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3167), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1734), + [sym_identifier] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), }, [980] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1208), - [sym_logical_expression] = STATE(1208), - [sym_bitwise_expression] = STATE(1208), - [sym_cast_expression] = STATE(1208), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1208), - [sym_char_literal] = STATE(1208), - [sym_assignment_expression] = STATE(1208), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1208), - [sym_math_expression] = STATE(1208), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1208), - [sym_equality_expression] = STATE(1208), - [sym_relational_expression] = STATE(1208), - [sym_sizeof_expression] = STATE(1208), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1208), - [sym_concatenated_string] = STATE(1208), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(1732), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3187), + [sym_preproc_arg] = ACTIONS(3189), }, [981] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1209), - [sym_logical_expression] = STATE(1209), - [sym_bitwise_expression] = STATE(1209), - [sym_cast_expression] = STATE(1209), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1209), - [sym_char_literal] = STATE(1209), - [sym_assignment_expression] = STATE(1209), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1209), - [sym_math_expression] = STATE(1209), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1209), - [sym_equality_expression] = STATE(1209), - [sym_relational_expression] = STATE(1209), - [sym_sizeof_expression] = STATE(1209), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1209), - [sym_concatenated_string] = STATE(1209), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3177), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(1732), + [sym_preproc_arg] = ACTIONS(3191), }, [982] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(1210), - [sym_logical_expression] = STATE(1210), - [sym_bitwise_expression] = STATE(1210), - [sym_cast_expression] = STATE(1210), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(1210), - [sym_char_literal] = STATE(1210), - [sym_assignment_expression] = STATE(1210), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(1210), - [sym_math_expression] = STATE(1210), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_relational_expression] = STATE(1210), - [sym_sizeof_expression] = STATE(1210), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(1210), - [sym_concatenated_string] = STATE(1210), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3193), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(879), }, [983] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1211), - [sym_logical_expression] = STATE(1211), - [sym_bitwise_expression] = STATE(1211), - [sym_cast_expression] = STATE(1211), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1211), - [sym_char_literal] = STATE(1211), - [sym_assignment_expression] = STATE(1211), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1211), - [sym_math_expression] = STATE(1211), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1211), - [sym_equality_expression] = STATE(1211), - [sym_relational_expression] = STATE(1211), - [sym_sizeof_expression] = STATE(1211), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1211), - [sym_concatenated_string] = STATE(1211), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3185), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(1732), + [sym__declaration_specifiers] = STATE(984), + [sym_preproc_def] = STATE(1214), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1214), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1214), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(1214), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1214), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1214), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1214), + [sym_field_declaration] = STATE(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2448), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(2452), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [anon_sym_signed] = ACTIONS(352), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2448), + [aux_sym_preproc_def_token1] = ACTIONS(2456), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [984] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1212), - [sym_logical_expression] = STATE(1212), - [sym_bitwise_expression] = STATE(1212), - [sym_cast_expression] = STATE(1212), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1212), - [sym_char_literal] = STATE(1212), - [sym_assignment_expression] = STATE(1212), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1212), - [sym_math_expression] = STATE(1212), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1212), - [sym_equality_expression] = STATE(1212), - [sym_relational_expression] = STATE(1212), - [sym_sizeof_expression] = STATE(1212), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1212), - [sym_concatenated_string] = STATE(1212), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(1732), + [sym_pointer_field_declarator] = STATE(1217), + [sym_array_field_declarator] = STATE(1217), + [sym_bitfield_clause] = STATE(1216), + [sym_function_field_declarator] = STATE(1217), + [sym__field_declarator] = STATE(1217), + [sym_identifier] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(3197), }, [985] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(398), + [aux_sym_preproc_if_token2] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [aux_sym_preproc_elif_token1] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym___attribute__] = ACTIONS(398), }, [986] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1213), - [sym_logical_expression] = STATE(1213), - [sym_bitwise_expression] = STATE(1213), - [sym_cast_expression] = STATE(1213), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1213), - [sym_char_literal] = STATE(1213), - [sym_assignment_expression] = STATE(1213), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1213), - [sym_math_expression] = STATE(1213), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1213), - [sym_equality_expression] = STATE(1213), - [sym_relational_expression] = STATE(1213), - [sym_sizeof_expression] = STATE(1213), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1213), - [sym_concatenated_string] = STATE(1213), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(1732), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3199), }, [987] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1214), - [sym_logical_expression] = STATE(1214), - [sym_bitwise_expression] = STATE(1214), - [sym_cast_expression] = STATE(1214), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1214), - [sym_char_literal] = STATE(1214), - [sym_assignment_expression] = STATE(1214), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1214), - [sym_math_expression] = STATE(1214), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1214), - [sym_equality_expression] = STATE(1214), - [sym_relational_expression] = STATE(1214), - [sym_sizeof_expression] = STATE(1214), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1214), - [sym_concatenated_string] = STATE(1214), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(1732), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(1220), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1220), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1220), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1221), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1221), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(1220), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1220), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1220), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1220), + [sym_field_declaration] = STATE(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [988] = { - [aux_sym_initializer_list_repeat1] = STATE(1216), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3169), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(1222), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1222), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1222), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1223), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1223), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(1222), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1222), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1222), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1222), + [sym_field_declaration] = STATE(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [aux_sym_preproc_if_token2] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [989] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1217), - [sym_logical_expression] = STATE(1217), - [sym_bitwise_expression] = STATE(1217), - [sym_cast_expression] = STATE(1217), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1217), - [sym_char_literal] = STATE(1217), - [sym_assignment_expression] = STATE(1217), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1217), - [sym_math_expression] = STATE(1217), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1217), - [sym_equality_expression] = STATE(1217), - [sym_relational_expression] = STATE(1217), - [sym_sizeof_expression] = STATE(1217), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1217), - [sym_initializer_list] = STATE(1218), - [sym_concatenated_string] = STATE(1217), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_preproc_params] = STATE(1226), + [sym_preproc_arg] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3207), }, [990] = { - [sym_subscript_designator] = STATE(990), - [sym_field_designator] = STATE(990), - [aux_sym_initializer_pair_repeat1] = STATE(990), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_DOT] = ACTIONS(3210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3209), + [anon_sym_union] = ACTIONS(3209), + [anon_sym_unsigned] = ACTIONS(3209), + [anon_sym_volatile] = ACTIONS(3209), + [anon_sym_short] = ACTIONS(3209), + [anon_sym_static] = ACTIONS(3209), + [anon_sym_restrict] = ACTIONS(3209), + [anon_sym_register] = ACTIONS(3209), + [anon_sym_extern] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3209), + [sym_preproc_directive] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [anon_sym_long] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3209), + [aux_sym_preproc_def_token1] = ACTIONS(3209), + [anon_sym__Atomic] = ACTIONS(3209), + [anon_sym_auto] = ACTIONS(3209), + [sym_primitive_type] = ACTIONS(3209), + [anon_sym_inline] = ACTIONS(3209), + [anon_sym___attribute__] = ACTIONS(3209), }, [991] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_RPAREN] = ACTIONS(3213), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_volatile] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3218), + [anon_sym_signed] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(3221), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [aux_sym_preproc_elif_token1] = ACTIONS(3216), + [aux_sym_preproc_def_token1] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(1721), + [anon_sym_auto] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1747), + [anon_sym_inline] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1750), }, [992] = { - [anon_sym_LPAREN2] = ACTIONS(3215), + [aux_sym_preproc_if_token2] = ACTIONS(3227), [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_RPAREN] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), }, [993] = { - [aux_sym_parameter_list_repeat1] = STATE(993), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsigned] = ACTIONS(1766), + [anon_sym_volatile] = ACTIONS(1766), + [anon_sym_short] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_restrict] = ACTIONS(1766), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1766), + [aux_sym_preproc_if_token2] = ACTIONS(1766), + [sym_preproc_directive] = ACTIONS(1766), + [anon_sym_signed] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1766), + [anon_sym_long] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), + [aux_sym_preproc_elif_token1] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [anon_sym__Atomic] = ACTIONS(1766), + [anon_sym_auto] = ACTIONS(1766), + [sym_primitive_type] = ACTIONS(1766), + [anon_sym_inline] = ACTIONS(1766), + [anon_sym___attribute__] = ACTIONS(1766), }, [994] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(994), - [sym_storage_class_specifier] = STATE(994), - [sym_type_qualifier] = STATE(994), - [anon_sym_LPAREN2] = ACTIONS(1482), - [sym_identifier] = ACTIONS(808), - [anon_sym__Atomic] = ACTIONS(810), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(810), - [anon_sym_inline] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(813), - [anon_sym_restrict] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(813), - [anon_sym_const] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3229), }, [995] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(994), - [sym_storage_class_specifier] = STATE(994), - [sym_type_qualifier] = STATE(994), - [anon_sym_LPAREN2] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym_field_declaration_repeat1] = STATE(1229), + [sym_bitfield_clause] = STATE(1230), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(3229), }, [996] = { - [anon_sym_LPAREN2] = ACTIONS(3220), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(344), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_RPAREN] = ACTIONS(3224), - [anon_sym_register] = ACTIONS(117), - [anon_sym_const] = ACTIONS(117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), + [anon_sym_union] = ACTIONS(3231), + [anon_sym_unsigned] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_short] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_restrict] = ACTIONS(3231), + [anon_sym_register] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3231), + [sym_preproc_directive] = ACTIONS(3231), + [anon_sym_signed] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3231), + [anon_sym_long] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [anon_sym__Atomic] = ACTIONS(3231), + [anon_sym_auto] = ACTIONS(3231), + [sym_primitive_type] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym___attribute__] = ACTIONS(3231), }, [997] = { - [sym__abstract_declarator] = STATE(427), - [sym_function_declarator] = STATE(370), - [sym_abstract_array_declarator] = STATE(427), - [sym_pointer_declarator] = STATE(370), - [sym_parameter_list] = STATE(190), - [sym_abstract_function_declarator] = STATE(427), - [sym__declarator] = STATE(370), - [sym_abstract_pointer_declarator] = STATE(427), - [sym_array_declarator] = STATE(370), - [sym_type_qualifier] = STATE(1219), - [aux_sym_type_definition_repeat1] = STATE(1219), - [anon_sym_LPAREN2] = ACTIONS(1756), + [aux_sym_preproc_if_token2] = ACTIONS(3235), [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(935), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(11), }, [998] = { - [sym__abstract_declarator] = STATE(720), - [sym_function_declarator] = STATE(661), - [sym_abstract_array_declarator] = STATE(720), - [sym_pointer_declarator] = STATE(661), - [sym_parameter_list] = STATE(190), - [sym_abstract_function_declarator] = STATE(720), - [sym__declarator] = STATE(661), - [sym_abstract_pointer_declarator] = STATE(720), - [sym_array_declarator] = STATE(661), - [sym_type_qualifier] = STATE(1220), - [aux_sym_type_definition_repeat1] = STATE(1220), - [anon_sym_LPAREN2] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1628), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(11), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(2257), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [anon_sym__Atomic] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym___attribute__] = ACTIONS(2257), }, [999] = { - [anon_sym_LPAREN2] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(2269), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [anon_sym__Atomic] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym___attribute__] = ACTIONS(2269), }, [1000] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(3229), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3237), }, [1001] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3229), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3239), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), }, [1002] = { - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [aux_sym_preproc_include_token1] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3233), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), + [sym_pointer_field_declarator] = STATE(1001), + [sym_array_field_declarator] = STATE(1001), + [sym_type_qualifier] = STATE(664), + [aux_sym_type_definition_repeat1] = STATE(664), + [sym_function_field_declarator] = STATE(1001), + [sym__field_declarator] = STATE(1001), + [sym_identifier] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1760), }, [1003] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(3241), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3241), + [anon_sym_LPAREN2] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), }, [1004] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(3243), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), }, [1005] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1224), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [1006] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1225), - [sym_logical_expression] = STATE(1225), - [sym_bitwise_expression] = STATE(1225), - [sym_cast_expression] = STATE(1225), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1225), - [sym_char_literal] = STATE(1225), - [sym_assignment_expression] = STATE(1225), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1225), - [sym_math_expression] = STATE(1225), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1225), - [sym_equality_expression] = STATE(1225), - [sym_relational_expression] = STATE(1225), - [sym_sizeof_expression] = STATE(1225), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1225), - [sym_concatenated_string] = STATE(1225), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3235), - }, - [1007] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1227), - [sym_logical_expression] = STATE(1227), - [sym_bitwise_expression] = STATE(1227), - [sym_cast_expression] = STATE(1227), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1227), - [sym_char_literal] = STATE(1227), - [sym_assignment_expression] = STATE(1227), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1227), - [sym_math_expression] = STATE(1227), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1227), - [sym_equality_expression] = STATE(1227), - [sym_relational_expression] = STATE(1227), - [sym_sizeof_expression] = STATE(1227), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1227), - [sym_concatenated_string] = STATE(1227), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3245), - }, - [1008] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(3247), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3247), + [anon_sym_LPAREN2] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_COLON] = ACTIONS(3247), [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), }, - [1009] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1229), - [sym_logical_expression] = STATE(1229), - [sym_bitwise_expression] = STATE(1229), - [sym_cast_expression] = STATE(1229), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1229), - [sym_char_literal] = STATE(1229), - [sym_assignment_expression] = STATE(1229), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1229), - [sym_math_expression] = STATE(1229), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1229), - [sym_equality_expression] = STATE(1229), - [sym_relational_expression] = STATE(1229), - [sym_sizeof_expression] = STATE(1229), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1229), - [sym_concatenated_string] = STATE(1229), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), + [1007] = { + [sym_concatenated_string] = STATE(1235), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1235), + [sym_math_expression] = STATE(1235), + [sym_cast_expression] = STATE(1235), + [sym_type_qualifier] = STATE(841), + [sym_field_expression] = STATE(345), + [aux_sym_type_definition_repeat1] = STATE(841), + [sym_conditional_expression] = STATE(1235), + [sym_assignment_expression] = STATE(1235), + [sym_relational_expression] = STATE(1235), + [sym_shift_expression] = STATE(1235), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1235), + [sym_bitwise_expression] = STATE(1235), + [sym_equality_expression] = STATE(1235), + [sym_sizeof_expression] = STATE(1235), + [sym_compound_literal_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_char_literal] = STATE(1235), [sym_null] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(863), [sym_number_literal] = ACTIONS(3251), + [anon_sym_restrict] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), [sym_false] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(869), + [sym_identifier] = ACTIONS(875), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym__Atomic] = ACTIONS(13), + [sym_true] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), + }, + [1008] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1009] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), + [anon_sym_union] = ACTIONS(3255), + [anon_sym_unsigned] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_short] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_restrict] = ACTIONS(3255), + [anon_sym_register] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3255), + [sym_preproc_directive] = ACTIONS(3255), + [anon_sym_signed] = ACTIONS(3255), + [aux_sym_preproc_if_token1] = ACTIONS(3255), + [anon_sym_long] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), + [aux_sym_preproc_def_token1] = ACTIONS(3255), + [anon_sym__Atomic] = ACTIONS(3255), + [anon_sym_auto] = ACTIONS(3255), + [sym_primitive_type] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym___attribute__] = ACTIONS(3255), }, [1010] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [aux_sym_field_declaration_repeat1] = STATE(1010), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), }, [1011] = { - [anon_sym_LPAREN2] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1053), - [sym_primitive_type] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [aux_sym_preproc_if_token2] = ACTIONS(1053), - [sym_preproc_directive] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_restrict] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [anon_sym_signed] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1053), - [anon_sym_auto] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1053), - [anon_sym_inline] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_sizeof] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_short] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1051), - [sym_null] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3262), }, [1012] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1231), - [sym_logical_expression] = STATE(1231), - [sym_bitwise_expression] = STATE(1231), - [sym_cast_expression] = STATE(1231), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1231), - [sym_char_literal] = STATE(1231), - [sym_assignment_expression] = STATE(1231), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1231), - [sym_math_expression] = STATE(1231), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_relational_expression] = STATE(1231), - [sym_sizeof_expression] = STATE(1231), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1231), - [sym_concatenated_string] = STATE(1231), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3257), - [sym_false] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), }, [1013] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1239), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1239), + [sym_math_expression] = STATE(1239), + [sym_cast_expression] = STATE(1239), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1239), + [sym_assignment_expression] = STATE(1239), + [sym_relational_expression] = STATE(1239), + [sym_shift_expression] = STATE(1239), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1239), + [sym_bitwise_expression] = STATE(1239), + [sym_equality_expression] = STATE(1239), + [sym_sizeof_expression] = STATE(1239), + [sym_compound_literal_expression] = STATE(1239), + [sym_parenthesized_expression] = STATE(1239), + [sym_char_literal] = STATE(1239), + [sym_null] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3266), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3270), + [sym_true] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1014] = { - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1073), - [sym_null] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1073), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1015] = { - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [aux_sym_preproc_if_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_null] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1125), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1016] = { - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), + [aux_sym_for_statement_repeat1] = STATE(1242), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1017] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1234), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), - [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1234), - [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(3263), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_concatenated_string] = STATE(1243), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1243), + [sym_math_expression] = STATE(1243), + [sym_cast_expression] = STATE(1243), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1243), + [sym_assignment_expression] = STATE(1243), + [sym_relational_expression] = STATE(1243), + [sym_shift_expression] = STATE(1243), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1243), + [sym_bitwise_expression] = STATE(1243), + [sym_equality_expression] = STATE(1243), + [sym_sizeof_expression] = STATE(1243), + [sym_compound_literal_expression] = STATE(1243), + [sym_parenthesized_expression] = STATE(1243), + [sym_char_literal] = STATE(1243), + [sym_null] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3276), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1018] = { - [sym_pointer_type_declarator] = STATE(1235), - [sym_array_type_declarator] = STATE(1235), - [sym_function_type_declarator] = STATE(1235), - [sym__type_declarator] = STATE(1235), - [anon_sym_LPAREN2] = ACTIONS(495), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1019] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(1237), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3265), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3284), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_GT_EQ] = ACTIONS(1804), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(326), }, [1020] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(3267), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_concatenated_string] = STATE(1245), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1245), + [sym_math_expression] = STATE(1245), + [sym_cast_expression] = STATE(1245), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1245), + [sym_relational_expression] = STATE(1245), + [sym_shift_expression] = STATE(1245), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1245), + [sym_comma_expression] = STATE(1246), + [sym_bitwise_expression] = STATE(1245), + [sym_equality_expression] = STATE(1245), + [sym_sizeof_expression] = STATE(1245), + [sym_compound_literal_expression] = STATE(1245), + [sym_parenthesized_expression] = STATE(1245), + [sym_char_literal] = STATE(1245), + [sym_null] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3288), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3286), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1021] = { - [anon_sym_LPAREN2] = ACTIONS(3269), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1798), + [aux_sym_preproc_if_token2] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_typedef] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [sym_number_literal] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [aux_sym_preproc_elif_token1] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [aux_sym_preproc_else_token1] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1800), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_LPAREN2] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1798), + [sym_true] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1798), + [sym_false] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1800), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), }, [1022] = { - [sym_parenthesized_expression] = STATE(1240), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_union] = ACTIONS(977), + [anon_sym_sizeof] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_null] = ACTIONS(977), + [sym_identifier] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(977), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_const] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_else] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [sym_true] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_static] = ACTIONS(977), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_if] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_return] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [sym_number_literal] = ACTIONS(979), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_inline] = ACTIONS(977), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), }, [1023] = { - [sym_parenthesized_expression] = STATE(1241), - [anon_sym_LPAREN2] = ACTIONS(177), + [sym_parenthesized_expression] = STATE(1248), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3290), }, [1024] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(3271), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1054), + [anon_sym_unsigned] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1054), + [anon_sym_short] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_null] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_goto] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1054), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1054), + [sym_primitive_type] = ACTIONS(1054), + [sym_true] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_restrict] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_signed] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_long] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [anon_sym_auto] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), }, [1025] = { - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_long] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [sym_true] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_null] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_null] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [sym_number_literal] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), }, [1026] = { - [sym_do_statement] = STATE(1244), - [sym_goto_statement] = STATE(1244), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(1244), - [sym_case_statement] = STATE(1244), - [sym_break_statement] = STATE(1244), - [sym_continue_statement] = STATE(1244), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1244), - [sym_labeled_statement] = STATE(1244), - [sym_expression_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_volatile] = ACTIONS(1166), + [anon_sym_short] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym_null] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_goto] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1166), + [sym_preproc_directive] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1164), + [aux_sym_preproc_if_token1] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_LPAREN2] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym__Atomic] = ACTIONS(1166), + [sym_primitive_type] = ACTIONS(1166), + [sym_true] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1166), + [aux_sym_preproc_include_token1] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_restrict] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_signed] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [sym_number_literal] = ACTIONS(1164), + [aux_sym_preproc_def_token1] = ACTIONS(1166), + [sym_false] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym___attribute__] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), }, [1027] = { - [anon_sym_LPAREN2] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [sym_true] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [aux_sym_preproc_if_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_null] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), }, [1028] = { - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [sym_true] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_null] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1336), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1250), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(1250), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(482), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [1029] = { - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [sym_true] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_null] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), + [sym_array_type_declarator] = STATE(1251), + [sym_pointer_type_declarator] = STATE(1251), + [sym_function_type_declarator] = STATE(1251), + [sym__type_declarator] = STATE(1251), + [sym_identifier] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), + [sym_comment] = ACTIONS(3), }, [1030] = { - [aux_sym_preproc_if_token2] = ACTIONS(3275), + [aux_sym_type_definition_repeat2] = STATE(1253), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3296), }, [1031] = { - [sym_goto_statement] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_logical_expression] = STATE(229), - [sym_preproc_elif] = STATE(1246), - [sym_cast_expression] = STATE(229), - [sym_declaration] = STATE(489), - [sym_field_expression] = STATE(34), - [sym_type_qualifier] = STATE(38), - [sym_union_specifier] = STATE(37), - [sym_switch_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_conditional_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_type_definition] = STATE(489), - [sym_subscript_expression] = STATE(34), - [sym_string_literal] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(489), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_break_statement] = STATE(489), - [sym_preproc_include] = STATE(489), - [sym_assignment_expression] = STATE(229), - [sym_preproc_ifdef] = STATE(489), - [sym_shift_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(489), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_preproc_def] = STATE(489), - [sym__expression] = STATE(229), - [sym_preproc_else] = STATE(1246), - [sym_bitwise_expression] = STATE(229), - [sym_function_definition] = STATE(489), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym__empty_declaration] = STATE(489), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_if_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_comma_expression] = STATE(230), - [sym_preproc_call] = STATE(489), - [sym_equality_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym__declaration_specifiers] = STATE(231), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_macro_type_specifier] = STATE(37), - [sym_sized_type_specifier] = STATE(37), - [sym_continue_statement] = STATE(489), - [sym_preproc_if] = STATE(489), - [sym_pointer_expression] = STATE(34), - [sym_math_expression] = STATE(229), - [sym_linkage_specification] = STATE(489), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(440), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(442), - [aux_sym_preproc_else_token1] = ACTIONS(444), - [aux_sym_preproc_if_token2] = ACTIONS(3277), - [sym_preproc_directive] = ACTIONS(448), - [aux_sym_preproc_if_token1] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(466), - [aux_sym_preproc_include_token1] = ACTIONS(468), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_preproc_elif_token1] = ACTIONS(480), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_concatenated_string] = STATE(1255), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1255), + [sym_math_expression] = STATE(1255), + [sym_cast_expression] = STATE(1255), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1255), + [sym_assignment_expression] = STATE(1255), + [sym_relational_expression] = STATE(1255), + [sym_shift_expression] = STATE(1255), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1255), + [sym_bitwise_expression] = STATE(1255), + [sym_equality_expression] = STATE(1255), + [sym_sizeof_expression] = STATE(1255), + [sym_compound_literal_expression] = STATE(1255), + [sym_parenthesized_expression] = STATE(1255), + [sym_char_literal] = STATE(1255), + [sym_null] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3298), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3302), + [sym_true] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1032] = { - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_long] = ACTIONS(653), - [anon_sym__Atomic] = ACTIONS(653), - [sym_primitive_type] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_identifier] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [aux_sym_preproc_if_token2] = ACTIONS(653), - [sym_preproc_directive] = ACTIONS(653), - [aux_sym_preproc_if_token1] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_restrict] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typedef] = ACTIONS(653), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), [anon_sym_STAR] = ACTIONS(651), - [anon_sym_if] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_signed] = ACTIONS(653), - [anon_sym_enum] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [sym_number_literal] = ACTIONS(651), - [anon_sym_return] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(653), - [aux_sym_preproc_include_token1] = ACTIONS(653), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_volatile] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(653), - [anon_sym_union] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(651), - [anon_sym_unsigned] = ACTIONS(653), - [anon_sym_struct] = ACTIONS(653), - [anon_sym_short] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(651), - [sym_null] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_goto] = ACTIONS(653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), - [anon_sym_register] = ACTIONS(653), - [anon_sym_const] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1033] = { - [aux_sym_string_literal_repeat1] = STATE(314), - [anon_sym_DQUOTE] = ACTIONS(3279), - [sym_comment] = ACTIONS(139), - [sym_escape_sequence] = ACTIONS(657), - [aux_sym_string_literal_token1] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_null] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [sym_true] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), }, [1034] = { - [sym_do_statement] = STATE(1249), - [sym_preproc_def] = STATE(1249), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(1249), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(1249), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(1249), - [sym_goto_statement] = STATE(1249), - [sym__empty_declaration] = STATE(1249), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(1249), - [sym_switch_statement] = STATE(1249), - [sym_for_statement] = STATE(1249), - [sym_return_statement] = STATE(1249), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(1249), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(1249), - [aux_sym_translation_unit_repeat1] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_preproc_include] = STATE(1249), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(1249), - [sym_preproc_ifdef] = STATE(1249), - [sym_linkage_specification] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_compound_statement] = STATE(1249), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_while_statement] = STATE(1249), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(3281), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), + [aux_sym_preproc_if_token2] = ACTIONS(3306), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), }, [1035] = { - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_null] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), + [sym_continue_statement] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_pointer_expression] = STATE(35), + [sym_preproc_elif] = STATE(1258), + [sym_math_expression] = STATE(229), + [sym_declaration] = STATE(482), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_comma_expression] = STATE(227), + [sym_equality_expression] = STATE(229), + [sym_type_definition] = STATE(482), + [sym_sizeof_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_preproc_include] = STATE(482), + [sym_conditional_expression] = STATE(229), + [sym_preproc_ifdef] = STATE(482), + [sym_relational_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_preproc_def] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym_preproc_else] = STATE(1258), + [sym_logical_expression] = STATE(229), + [sym_function_definition] = STATE(482), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym__expression] = STATE(229), + [sym_preproc_call] = STATE(482), + [sym_bitwise_expression] = STATE(229), + [sym__declaration_specifiers] = STATE(230), + [sym_compound_literal_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym__empty_declaration] = STATE(482), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(482), + [sym_preproc_if] = STATE(482), + [sym_assignment_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_linkage_specification] = STATE(482), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [sym_null] = ACTIONS(412), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(414), + [aux_sym_preproc_if_token2] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [sym_number_literal] = ACTIONS(422), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_long] = ACTIONS(15), + [anon_sym_while] = ACTIONS(426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [aux_sym_preproc_elif_token1] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym_do] = ACTIONS(432), + [aux_sym_preproc_else_token1] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(35), + [sym_true] = ACTIONS(412), + [sym_primitive_type] = ACTIONS(41), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_register] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_DASH] = ACTIONS(25), }, [1036] = { - [sym__declarator] = STATE(758), - [sym_function_declarator] = STATE(758), - [sym_array_declarator] = STATE(758), - [sym_pointer_declarator] = STATE(758), - [sym_init_declarator] = STATE(759), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_union] = ACTIONS(376), + [anon_sym_sizeof] = ACTIONS(376), + [anon_sym_unsigned] = ACTIONS(376), + [anon_sym_volatile] = ACTIONS(376), + [anon_sym_short] = ACTIONS(376), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_null] = ACTIONS(376), + [sym_identifier] = ACTIONS(376), + [anon_sym_do] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(376), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(376), + [sym_preproc_directive] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(378), + [aux_sym_preproc_if_token1] = ACTIONS(376), + [anon_sym_TILDE] = ACTIONS(378), + [anon_sym_const] = ACTIONS(376), + [anon_sym_LPAREN2] = ACTIONS(378), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym__Atomic] = ACTIONS(376), + [sym_primitive_type] = ACTIONS(376), + [sym_true] = ACTIONS(376), + [anon_sym_for] = ACTIONS(376), + [anon_sym_break] = ACTIONS(376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(376), + [aux_sym_preproc_include_token1] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_static] = ACTIONS(376), + [anon_sym_restrict] = ACTIONS(376), + [anon_sym_register] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(378), + [anon_sym_if] = ACTIONS(376), + [anon_sym_struct] = ACTIONS(376), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_signed] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [anon_sym_long] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_return] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(378), + [sym_number_literal] = ACTIONS(378), + [aux_sym_preproc_def_token1] = ACTIONS(376), + [sym_false] = ACTIONS(376), + [anon_sym_auto] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_inline] = ACTIONS(376), + [anon_sym___attribute__] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), }, [1037] = { - [sym_parenthesized_expression] = STATE(1251), - [anon_sym_LPAREN2] = ACTIONS(3283), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(180), + [aux_sym_string_literal_token1] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_comment] = ACTIONS(113), + [sym_escape_sequence] = ACTIONS(380), }, [1038] = { - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [sym_true] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [aux_sym_preproc_if_token2] = ACTIONS(1427), - [sym_preproc_directive] = ACTIONS(1427), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_null] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), + [sym_continue_statement] = STATE(1261), + [sym_preproc_function_def] = STATE(1261), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(1261), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1261), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_preproc_include] = STATE(1261), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(1261), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(1261), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_preproc_def] = STATE(1261), + [sym_goto_statement] = STATE(1261), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(1261), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1261), + [sym_expression_statement] = STATE(1261), + [sym_do_statement] = STATE(1261), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(1261), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(1261), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(1261), + [sym_preproc_if] = STATE(1261), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(1261), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [1039] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_null] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [sym_true] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), }, [1040] = { - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [sym_true] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_null] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1431), + [sym_function_declarator] = STATE(757), + [sym__declarator] = STATE(757), + [sym_init_declarator] = STATE(758), + [sym_pointer_declarator] = STATE(757), + [sym_array_declarator] = STATE(757), + [sym_identifier] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_LPAREN2] = ACTIONS(332), + [sym_comment] = ACTIONS(3), }, [1041] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3287), - [sym_preproc_arg] = ACTIONS(3289), + [sym_parenthesized_expression] = STATE(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1042] = { - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [sym_true] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [aux_sym_preproc_if_token2] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_null] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [1043] = { - [anon_sym_LPAREN2] = ACTIONS(1644), - [anon_sym_DASH_DASH] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1646), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_primitive_type] = ACTIONS(1646), - [sym_true] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [aux_sym_preproc_if_token2] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1644), - [sym_null] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), + [sym_parenthesized_expression] = STATE(1264), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1044] = { - [anon_sym_LPAREN2] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1650), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_primitive_type] = ACTIONS(1650), - [sym_true] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [aux_sym_preproc_if_token2] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym_null] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(3316), }, [1045] = { - [aux_sym_declaration_repeat1] = STATE(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(3318), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [1046] = { - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_long] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [sym_true] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [aux_sym_preproc_else_token1] = ACTIONS(1894), - [aux_sym_preproc_if_token2] = ACTIONS(1894), - [sym_preproc_directive] = ACTIONS(1894), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_include_token1] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_null] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [aux_sym_preproc_elif_token1] = ACTIONS(1894), - [aux_sym_preproc_def_token1] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1892), + [sym_while_statement] = STATE(1268), + [sym_continue_statement] = STATE(1268), + [sym_goto_statement] = STATE(1268), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1268), + [sym_expression_statement] = STATE(1268), + [sym_if_statement] = STATE(1268), + [sym_do_statement] = STATE(1268), + [sym_for_statement] = STATE(1268), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1268), + [sym_return_statement] = STATE(1268), + [sym_break_statement] = STATE(1268), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(1268), + [sym_labeled_statement] = STATE(1268), + [sym_case_statement] = STATE(1268), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1047] = { - [aux_sym_preproc_if_token2] = ACTIONS(3293), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_null] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1379), + [sym_preproc_directive] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [sym_true] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), }, [1048] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(1258), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1854), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [1049] = { - [anon_sym_LPAREN2] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_long] = ACTIONS(1981), - [anon_sym__Atomic] = ACTIONS(1981), - [sym_primitive_type] = ACTIONS(1981), - [sym_true] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [aux_sym_preproc_else_token1] = ACTIONS(1981), - [aux_sym_preproc_if_token2] = ACTIONS(1981), - [sym_preproc_directive] = ACTIONS(1981), - [aux_sym_preproc_if_token1] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_restrict] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_typedef] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [sym_number_literal] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1981), - [aux_sym_preproc_include_token1] = ACTIONS(1981), - [anon_sym_auto] = ACTIONS(1981), - [anon_sym_volatile] = ACTIONS(1981), - [anon_sym_inline] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_sizeof] = ACTIONS(1981), - [anon_sym_union] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_struct] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym_null] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_goto] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [aux_sym_preproc_elif_token1] = ACTIONS(1981), - [aux_sym_preproc_def_token1] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_sizeof] = ACTIONS(1403), + [anon_sym_unsigned] = ACTIONS(1403), + [anon_sym_volatile] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1405), + [sym_null] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_goto] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1403), + [sym_preproc_directive] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1405), + [aux_sym_preproc_if_token1] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_typedef] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1403), + [anon_sym__Atomic] = ACTIONS(1403), + [sym_primitive_type] = ACTIONS(1403), + [sym_true] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), + [aux_sym_preproc_include_token1] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_restrict] = ACTIONS(1403), + [anon_sym_register] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_signed] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [sym_number_literal] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1403), + [sym_false] = ACTIONS(1403), + [anon_sym_auto] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_inline] = ACTIONS(1403), + [anon_sym___attribute__] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), }, [1050] = { - [aux_sym_type_definition_repeat2] = STATE(806), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_sizeof] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1457), + [sym_null] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_goto] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1455), + [sym_preproc_directive] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [aux_sym_preproc_if_token1] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(1457), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1455), + [anon_sym__Atomic] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [sym_true] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), + [aux_sym_preproc_include_token1] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_signed] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [sym_number_literal] = ACTIONS(1457), + [aux_sym_preproc_def_token1] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1455), + [anon_sym___attribute__] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), }, [1051] = { - [sym_do_statement] = STATE(730), - [sym_goto_statement] = STATE(730), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(730), - [sym_switch_statement] = STATE(730), - [sym_for_statement] = STATE(730), - [sym_return_statement] = STATE(730), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(730), - [sym_continue_statement] = STATE(730), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(730), - [sym_labeled_statement] = STATE(730), - [sym_expression_statement] = STATE(730), - [sym_while_statement] = STATE(730), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym_unsigned] = ACTIONS(1463), + [anon_sym_volatile] = ACTIONS(1463), + [anon_sym_short] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_null] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_goto] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1463), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1465), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_typedef] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1463), + [anon_sym__Atomic] = ACTIONS(1463), + [sym_primitive_type] = ACTIONS(1463), + [sym_true] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_restrict] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_signed] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_long] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1465), + [sym_number_literal] = ACTIONS(1465), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [anon_sym_auto] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_inline] = ACTIONS(1463), + [anon_sym___attribute__] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), }, [1052] = { - [sym__expression] = STATE(1260), - [sym_logical_expression] = STATE(1260), - [sym_bitwise_expression] = STATE(1260), - [sym_cast_expression] = STATE(1260), - [sym_declaration] = STATE(1259), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1260), - [sym_char_literal] = STATE(1260), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1260), - [sym_equality_expression] = STATE(1260), - [sym_relational_expression] = STATE(1260), - [sym_sizeof_expression] = STATE(1260), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1260), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1260), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1260), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1260), - [sym_math_expression] = STATE(1260), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(3297), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3322), }, [1053] = { - [sym_do_statement] = STATE(1261), - [sym_goto_statement] = STATE(1261), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1261), - [sym_switch_statement] = STATE(1261), - [sym_for_statement] = STATE(1261), - [sym_return_statement] = STATE(1261), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1261), - [sym_continue_statement] = STATE(1261), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1261), - [sym_labeled_statement] = STATE(1261), - [sym_expression_statement] = STATE(1261), - [sym_while_statement] = STATE(1261), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_null] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym__Atomic] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [sym_true] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [sym_number_literal] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), }, [1054] = { - [sym_do_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(772), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3324), + [sym_preproc_arg] = ACTIONS(3326), }, [1055] = { - [sym_do_statement] = STATE(1262), - [sym_goto_statement] = STATE(1262), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1262), - [sym_continue_statement] = STATE(1262), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1262), - [sym_labeled_statement] = STATE(1262), - [sym_expression_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_volatile] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym_null] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [anon_sym_goto] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1646), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_LPAREN2] = ACTIONS(1648), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [sym_primitive_type] = ACTIONS(1646), + [sym_true] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_restrict] = ACTIONS(1646), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [sym_number_literal] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_inline] = ACTIONS(1646), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), }, [1056] = { - [anon_sym_DASH_DASH] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym__Atomic] = ACTIONS(2023), - [aux_sym_preproc_if_token2] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2021), - [sym_number_literal] = ACTIONS(2021), - [anon_sym_restrict] = ACTIONS(2023), - [anon_sym_typedef] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_signed] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_sizeof] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_unsigned] = ACTIONS(2023), - [anon_sym_short] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2023), - [aux_sym_preproc_elif_token1] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_long] = ACTIONS(2023), - [sym_true] = ACTIONS(2023), - [sym_primitive_type] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [aux_sym_preproc_else_token1] = ACTIONS(2023), - [sym_preproc_directive] = ACTIONS(2023), - [aux_sym_preproc_if_token1] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_switch] = ACTIONS(2023), - [sym_false] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [aux_sym_preproc_include_token1] = ACTIONS(2023), - [anon_sym_auto] = ACTIONS(2023), - [anon_sym_inline] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [sym_null] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [aux_sym_preproc_def_token1] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1662), + [anon_sym_unsigned] = ACTIONS(1662), + [anon_sym_volatile] = ACTIONS(1662), + [anon_sym_short] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1660), + [sym_null] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1662), + [anon_sym_do] = ACTIONS(1662), + [anon_sym_goto] = ACTIONS(1662), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1662), + [sym_preproc_directive] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1660), + [aux_sym_preproc_if_token1] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_LPAREN2] = ACTIONS(1660), + [anon_sym_typedef] = ACTIONS(1662), + [anon_sym_DASH_DASH] = ACTIONS(1660), + [anon_sym__Atomic] = ACTIONS(1662), + [sym_primitive_type] = ACTIONS(1662), + [sym_true] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1662), + [aux_sym_preproc_include_token1] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_restrict] = ACTIONS(1662), + [anon_sym_register] = ACTIONS(1662), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_switch] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_long] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [sym_number_literal] = ACTIONS(1660), + [aux_sym_preproc_def_token1] = ACTIONS(1662), + [sym_false] = ACTIONS(1662), + [anon_sym_auto] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_inline] = ACTIONS(1662), + [anon_sym___attribute__] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), }, [1057] = { - [sym_do_statement] = STATE(820), - [sym_goto_statement] = STATE(820), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(820), - [sym_switch_statement] = STATE(820), - [sym_for_statement] = STATE(820), - [sym_return_statement] = STATE(820), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(820), - [sym_case_statement] = STATE(820), - [sym_break_statement] = STATE(820), - [sym_continue_statement] = STATE(820), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(820), - [sym_labeled_statement] = STATE(820), - [sym_expression_statement] = STATE(820), - [sym_while_statement] = STATE(820), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_declaration_repeat1] = STATE(678), + [anon_sym_COMMA] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3328), }, [1058] = { - [anon_sym_LPAREN2] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_long] = ACTIONS(2097), - [anon_sym__Atomic] = ACTIONS(2097), - [sym_primitive_type] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [aux_sym_preproc_else_token1] = ACTIONS(2097), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [sym_preproc_directive] = ACTIONS(2097), - [aux_sym_preproc_if_token1] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_restrict] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_typedef] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_signed] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [sym_number_literal] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2097), - [aux_sym_preproc_include_token1] = ACTIONS(2097), - [anon_sym_auto] = ACTIONS(2097), - [anon_sym_volatile] = ACTIONS(2097), - [anon_sym_inline] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_sizeof] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_unsigned] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_short] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym_null] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2095), - [aux_sym_preproc_elif_token1] = ACTIONS(2097), - [aux_sym_preproc_def_token1] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2097), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), + [sym_null] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1916), + [aux_sym_preproc_if_token2] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym__Atomic] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [aux_sym_preproc_elif_token1] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym_sizeof] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [aux_sym_preproc_else_token1] = ACTIONS(1916), + [anon_sym_TILDE] = ACTIONS(1914), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1914), + [sym_true] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), }, [1059] = { - [aux_sym_preproc_if_token2] = ACTIONS(3305), + [aux_sym_preproc_if_token2] = ACTIONS(3330), [sym_comment] = ACTIONS(3), }, [1060] = { - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_null] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), + [aux_sym_type_definition_repeat2] = STATE(1275), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3332), }, [1061] = { - [anon_sym_LPAREN2] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_long] = ACTIONS(2103), - [anon_sym__Atomic] = ACTIONS(2103), - [sym_primitive_type] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [aux_sym_preproc_else_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2103), - [sym_preproc_directive] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_restrict] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_typedef] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_signed] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [sym_number_literal] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2103), - [aux_sym_preproc_include_token1] = ACTIONS(2103), - [anon_sym_auto] = ACTIONS(2103), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym_inline] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_sizeof] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_unsigned] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_short] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym_null] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_goto] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [aux_sym_preproc_elif_token1] = ACTIONS(2103), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2101), + [sym_null] = ACTIONS(2122), + [anon_sym_volatile] = ACTIONS(2122), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2122), + [aux_sym_preproc_if_token2] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), + [sym_number_literal] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2122), + [anon_sym_long] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), + [aux_sym_preproc_elif_token1] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsigned] = ACTIONS(2122), + [anon_sym_short] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [aux_sym_preproc_else_token1] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2122), + [anon_sym_LPAREN2] = ACTIONS(2124), + [sym_true] = ACTIONS(2122), + [sym_primitive_type] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [anon_sym_auto] = ACTIONS(2122), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), }, [1062] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(3307), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(3332), }, [1063] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1266), - [sym_logical_expression] = STATE(1266), - [sym_bitwise_expression] = STATE(1266), - [sym_cast_expression] = STATE(1266), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1266), - [sym_char_literal] = STATE(1266), - [sym_assignment_expression] = STATE(1266), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1266), - [sym_math_expression] = STATE(1266), - [sym_call_expression] = STATE(54), - [sym_comma_expression] = STATE(1267), - [sym_conditional_expression] = STATE(1266), - [sym_equality_expression] = STATE(1266), - [sym_relational_expression] = STATE(1266), - [sym_sizeof_expression] = STATE(1266), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(107), + [sym_concatenated_string] = STATE(1277), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1277), + [sym_math_expression] = STATE(1277), + [sym_cast_expression] = STATE(1277), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1277), + [sym_assignment_expression] = STATE(1277), + [sym_relational_expression] = STATE(1277), + [sym_shift_expression] = STATE(1277), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1277), + [sym_bitwise_expression] = STATE(1277), + [sym_equality_expression] = STATE(1277), + [sym_sizeof_expression] = STATE(1277), + [sym_compound_literal_expression] = STATE(1277), + [sym_parenthesized_expression] = STATE(1277), + [sym_char_literal] = STATE(1277), + [sym_null] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3334), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1064] = { - [anon_sym_DASH_DASH] = ACTIONS(2216), - [sym_identifier] = ACTIONS(2218), - [anon_sym__Atomic] = ACTIONS(2218), - [aux_sym_preproc_if_token2] = ACTIONS(2218), - [anon_sym_TILDE] = ACTIONS(2216), - [sym_number_literal] = ACTIONS(2216), - [anon_sym_restrict] = ACTIONS(2218), - [anon_sym_typedef] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_signed] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_volatile] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_sizeof] = ACTIONS(2218), - [anon_sym_union] = ACTIONS(2218), - [anon_sym_unsigned] = ACTIONS(2218), - [anon_sym_short] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), - [aux_sym_preproc_elif_token1] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_long] = ACTIONS(2218), - [sym_true] = ACTIONS(2218), - [sym_primitive_type] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [aux_sym_preproc_else_token1] = ACTIONS(2218), - [sym_preproc_directive] = ACTIONS(2218), - [aux_sym_preproc_if_token1] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_switch] = ACTIONS(2218), - [sym_false] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [aux_sym_preproc_include_token1] = ACTIONS(2218), - [anon_sym_auto] = ACTIONS(2218), - [anon_sym_inline] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [sym_null] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2218), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_goto] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2216), - [aux_sym_preproc_def_token1] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1065] = { - [aux_sym_preproc_if_token2] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(1279), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1279), + [sym_math_expression] = STATE(1279), + [sym_cast_expression] = STATE(1279), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1279), + [sym_assignment_expression] = STATE(1279), + [sym_relational_expression] = STATE(1279), + [sym_shift_expression] = STATE(1279), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1279), + [sym_bitwise_expression] = STATE(1279), + [sym_equality_expression] = STATE(1279), + [sym_sizeof_expression] = STATE(1279), + [sym_compound_literal_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_char_literal] = STATE(1279), + [sym_null] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3344), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3342), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3340), + [sym_true] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1066] = { - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [aux_sym_preproc_else_token1] = ACTIONS(2222), - [aux_sym_preproc_if_token2] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2220), - [sym_number_literal] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [aux_sym_preproc_include_token1] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_sizeof] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym_null] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2220), - [aux_sym_preproc_elif_token1] = ACTIONS(2222), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2220), + [sym_null] = ACTIONS(2155), + [anon_sym_volatile] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2155), + [aux_sym_preproc_if_token2] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_typedef] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym__Atomic] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2155), + [sym_number_literal] = ACTIONS(2153), + [anon_sym_restrict] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_signed] = ACTIONS(2155), + [anon_sym_long] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2155), + [aux_sym_preproc_elif_token1] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [anon_sym___attribute__] = ACTIONS(2155), + [anon_sym_sizeof] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsigned] = ACTIONS(2155), + [anon_sym_short] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [aux_sym_preproc_else_token1] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2153), + [sym_preproc_directive] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2153), + [aux_sym_preproc_if_token1] = ACTIONS(2155), + [anon_sym_LPAREN2] = ACTIONS(2153), + [sym_true] = ACTIONS(2155), + [sym_primitive_type] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [aux_sym_preproc_include_token1] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_switch] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [aux_sym_preproc_def_token1] = ACTIONS(2155), + [anon_sym_auto] = ACTIONS(2155), + [anon_sym_inline] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), }, [1067] = { - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [aux_sym_preproc_else_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token2] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_typedef] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [aux_sym_preproc_include_token1] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_sizeof] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_unsigned] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_null] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_goto] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2232), - [aux_sym_preproc_elif_token1] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_register] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2232), + [aux_sym_preproc_if_token2] = ACTIONS(3346), + [sym_comment] = ACTIONS(3), }, [1068] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3315), + [sym_null] = ACTIONS(1029), + [anon_sym_volatile] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1029), + [aux_sym_preproc_if_token2] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_typedef] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1029), + [sym_number_literal] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_signed] = ACTIONS(1029), + [anon_sym_long] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1029), + [aux_sym_preproc_elif_token1] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsigned] = ACTIONS(1029), + [anon_sym_short] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [aux_sym_preproc_else_token1] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(1031), + [sym_true] = ACTIONS(1029), + [sym_primitive_type] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [aux_sym_preproc_include_token1] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_switch] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1029), + [anon_sym_auto] = ACTIONS(1029), + [anon_sym_inline] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), }, [1069] = { - [anon_sym_LPAREN2] = ACTIONS(2392), - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_long] = ACTIONS(2394), - [anon_sym__Atomic] = ACTIONS(2394), - [sym_primitive_type] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [aux_sym_preproc_else_token1] = ACTIONS(2394), - [aux_sym_preproc_if_token2] = ACTIONS(2394), - [sym_preproc_directive] = ACTIONS(2394), - [aux_sym_preproc_if_token1] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_restrict] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2392), - [anon_sym_typedef] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_signed] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2394), - [aux_sym_preproc_include_token1] = ACTIONS(2394), - [anon_sym_auto] = ACTIONS(2394), - [anon_sym_volatile] = ACTIONS(2394), - [anon_sym_inline] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_sizeof] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2392), - [anon_sym_unsigned] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_short] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym_null] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_goto] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [aux_sym_preproc_elif_token1] = ACTIONS(2394), - [aux_sym_preproc_def_token1] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_register] = ACTIONS(2394), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2392), + [sym_null] = ACTIONS(2161), + [anon_sym_volatile] = ACTIONS(2161), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2161), + [aux_sym_preproc_if_token2] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_typedef] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym__Atomic] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_restrict] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_signed] = ACTIONS(2161), + [anon_sym_long] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym___attribute__] = ACTIONS(2161), + [anon_sym_sizeof] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsigned] = ACTIONS(2161), + [anon_sym_short] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [aux_sym_preproc_else_token1] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [sym_preproc_directive] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2159), + [aux_sym_preproc_if_token1] = ACTIONS(2161), + [anon_sym_LPAREN2] = ACTIONS(2159), + [sym_true] = ACTIONS(2161), + [sym_primitive_type] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [aux_sym_preproc_include_token1] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [aux_sym_preproc_def_token1] = ACTIONS(2161), + [anon_sym_auto] = ACTIONS(2161), + [anon_sym_inline] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), }, [1070] = { - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3319), - [sym_identifier] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [sym_number_literal] = ACTIONS(3317), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_signed] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_LPAREN2] = ACTIONS(3317), - [anon_sym_long] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [anon_sym_auto] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3317), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [1071] = { - [anon_sym_LPAREN2] = ACTIONS(3321), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), + [sym_while_statement] = STATE(1282), + [sym_continue_statement] = STATE(1282), + [sym_goto_statement] = STATE(1282), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1282), + [sym_expression_statement] = STATE(1282), + [sym_if_statement] = STATE(1282), + [sym_do_statement] = STATE(1282), + [sym_for_statement] = STATE(1282), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1282), + [sym_return_statement] = STATE(1282), + [sym_break_statement] = STATE(1282), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1282), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1072] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(3323), + [sym_while_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(783), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1073] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3323), + [sym_while_statement] = STATE(785), + [sym_continue_statement] = STATE(785), + [sym_goto_statement] = STATE(785), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(785), + [sym_expression_statement] = STATE(785), + [sym_if_statement] = STATE(785), + [sym_do_statement] = STATE(785), + [sym_for_statement] = STATE(785), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(785), + [sym_return_statement] = STATE(785), + [sym_break_statement] = STATE(785), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(785), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1074] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1991), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1993), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1284), + [sym_math_expression] = STATE(1284), + [sym_cast_expression] = STATE(1284), + [sym_declaration] = STATE(1283), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1284), + [sym_bitwise_expression] = STATE(1284), + [sym_equality_expression] = STATE(1284), + [sym_sizeof_expression] = STATE(1284), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_concatenated_string] = STATE(1284), + [sym_char_literal] = STATE(1284), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_relational_expression] = STATE(1284), + [sym_shift_expression] = STATE(1284), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(3350), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [1075] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1271), - [sym_logical_expression] = STATE(1271), - [sym_bitwise_expression] = STATE(1271), - [sym_cast_expression] = STATE(1271), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1271), - [sym_char_literal] = STATE(1271), - [sym_assignment_expression] = STATE(1271), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1271), - [sym_math_expression] = STATE(1271), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1271), - [sym_equality_expression] = STATE(1271), - [sym_relational_expression] = STATE(1271), - [sym_sizeof_expression] = STATE(1271), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1271), - [sym_concatenated_string] = STATE(1271), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3331), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3333), + [sym_while_statement] = STATE(1285), + [sym_continue_statement] = STATE(1285), + [sym_goto_statement] = STATE(1285), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1285), + [sym_expression_statement] = STATE(1285), + [sym_if_statement] = STATE(1285), + [sym_do_statement] = STATE(1285), + [sym_for_statement] = STATE(1285), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1285), + [sym_return_statement] = STATE(1285), + [sym_break_statement] = STATE(1285), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1285), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1076] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_null] = ACTIONS(2175), + [anon_sym_volatile] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2175), + [aux_sym_preproc_if_token2] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_typedef] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2177), + [anon_sym__Atomic] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2177), + [anon_sym_restrict] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2175), + [anon_sym_long] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2175), + [aux_sym_preproc_elif_token1] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [anon_sym___attribute__] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsigned] = ACTIONS(2175), + [anon_sym_short] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [aux_sym_preproc_else_token1] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2177), + [sym_preproc_directive] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [aux_sym_preproc_if_token1] = ACTIONS(2175), + [anon_sym_LPAREN2] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_primitive_type] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [aux_sym_preproc_include_token1] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2177), + [aux_sym_preproc_def_token1] = ACTIONS(2175), + [anon_sym_auto] = ACTIONS(2175), + [anon_sym_inline] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), }, [1077] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1273), - [sym_logical_expression] = STATE(1273), - [sym_bitwise_expression] = STATE(1273), - [sym_cast_expression] = STATE(1273), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1273), - [sym_char_literal] = STATE(1273), - [sym_assignment_expression] = STATE(1273), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1273), - [sym_math_expression] = STATE(1273), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1273), - [sym_equality_expression] = STATE(1273), - [sym_relational_expression] = STATE(1273), - [sym_sizeof_expression] = STATE(1273), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1273), - [sym_concatenated_string] = STATE(1273), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3335), - [sym_false] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(207), + [sym_while_statement] = STATE(877), + [sym_continue_statement] = STATE(877), + [sym_goto_statement] = STATE(877), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(877), + [sym_expression_statement] = STATE(877), + [sym_if_statement] = STATE(877), + [sym_do_statement] = STATE(877), + [sym_for_statement] = STATE(877), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(877), + [sym_return_statement] = STATE(877), + [sym_break_statement] = STATE(877), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(877), + [sym_labeled_statement] = STATE(877), + [sym_case_statement] = STATE(877), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1078] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_if_token2] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), }, [1079] = { - [anon_sym_LPAREN2] = ACTIONS(111), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_DASH_GT] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym__Atomic] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), - [anon_sym_restrict] = ACTIONS(117), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_auto] = ACTIONS(117), - [anon_sym_volatile] = ACTIONS(117), - [anon_sym_inline] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_register] = ACTIONS(117), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_const] = ACTIONS(117), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_null] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2257), + [aux_sym_preproc_if_token2] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_typedef] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [sym_number_literal] = ACTIONS(2255), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [aux_sym_preproc_elif_token1] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym___attribute__] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [aux_sym_preproc_else_token1] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2255), + [sym_true] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [aux_sym_preproc_include_token1] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), }, [1080] = { - [anon_sym_LPAREN2] = ACTIONS(3343), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2269), + [aux_sym_preproc_if_token2] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_typedef] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym__Atomic] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [sym_number_literal] = ACTIONS(2267), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [aux_sym_preproc_elif_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym___attribute__] = ACTIONS(2269), + [anon_sym_sizeof] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [aux_sym_preproc_else_token1] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2267), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(2267), + [sym_true] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [aux_sym_preproc_include_token1] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), }, [1081] = { - [sym_parenthesized_expression] = STATE(1276), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3360), }, [1082] = { - [sym_parenthesized_expression] = STATE(1277), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2419), + [aux_sym_preproc_if_token2] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym__Atomic] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [aux_sym_preproc_elif_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_sizeof] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [aux_sym_preproc_else_token1] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2421), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [sym_true] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_switch] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [anon_sym_auto] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), }, [1083] = { - [sym_do_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(1278), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(201), - [sym_type_definition] = STATE(1278), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [aux_sym_case_statement_repeat1] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1278), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_labeled_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_default] = ACTIONS(3345), - [sym_identifier] = ACTIONS(2736), - [sym_true] = ACTIONS(15), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_long] = ACTIONS(426), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_static] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_while] = ACTIONS(2744), - [sym_false] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_case] = ACTIONS(3345), - [sym_null] = ACTIONS(15), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_union] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_short] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(472), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1084] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1280), - [sym_logical_expression] = STATE(1280), - [sym_bitwise_expression] = STATE(1280), - [sym_cast_expression] = STATE(1280), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1280), - [sym_char_literal] = STATE(1280), - [sym_assignment_expression] = STATE(1280), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1280), - [sym_math_expression] = STATE(1280), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1280), - [sym_equality_expression] = STATE(1280), - [sym_relational_expression] = STATE(1280), - [sym_sizeof_expression] = STATE(1280), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1280), - [sym_concatenated_string] = STATE(1280), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3353), - [sym_false] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(1288), + [sym_pointer_expression] = STATE(1288), + [sym_logical_expression] = STATE(1288), + [sym_math_expression] = STATE(1288), + [sym_cast_expression] = STATE(1288), + [sym_field_expression] = STATE(1288), + [sym_conditional_expression] = STATE(1288), + [sym_assignment_expression] = STATE(1288), + [sym_relational_expression] = STATE(1288), + [sym_shift_expression] = STATE(1288), + [sym_subscript_expression] = STATE(1288), + [sym_call_expression] = STATE(1288), + [sym_string_literal] = STATE(236), + [sym__expression] = STATE(1288), + [sym_bitwise_expression] = STATE(1288), + [sym_equality_expression] = STATE(1288), + [sym_sizeof_expression] = STATE(1288), + [sym_compound_literal_expression] = STATE(1288), + [sym_parenthesized_expression] = STATE(1288), + [sym_char_literal] = STATE(1288), + [sym_null] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(462), + [sym_number_literal] = ACTIONS(3366), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(466), + [sym_true] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_sizeof] = ACTIONS(472), }, [1085] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_RPAREN] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1086] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(3357), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [1087] = { - [anon_sym_LPAREN2] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3372), + [anon_sym_AMP_EQ] = ACTIONS(3372), + [anon_sym_DASH_EQ] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3372), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3372), + [anon_sym_DASH_GT] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LPAREN2] = ACTIONS(3372), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_PLUS_EQ] = ACTIONS(3372), + [anon_sym_STAR_EQ] = ACTIONS(3372), + [anon_sym_LT_LT_EQ] = ACTIONS(3372), + [anon_sym_QMARK] = ACTIONS(3372), + [anon_sym_EQ_EQ] = ACTIONS(3372), + [anon_sym_GT_EQ] = ACTIONS(3372), + [anon_sym_PIPE_PIPE] = ACTIONS(3372), + [anon_sym_CARET_EQ] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_SLASH_EQ] = ACTIONS(3372), + [anon_sym_GT_GT_EQ] = ACTIONS(3372), + [anon_sym_BANG_EQ] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_EQ] = ACTIONS(3372), + [anon_sym_DOT] = ACTIONS(3372), + [anon_sym_RPAREN] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3372), }, [1088] = { - [sym_parenthesized_expression] = STATE(1284), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(101), + [sym_pointer_expression] = STATE(101), + [sym_logical_expression] = STATE(101), + [sym_math_expression] = STATE(101), + [sym_cast_expression] = STATE(101), + [sym_field_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_assignment_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_shift_expression] = STATE(101), + [sym_subscript_expression] = STATE(101), + [sym_call_expression] = STATE(101), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(101), + [sym_bitwise_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_sizeof_expression] = STATE(101), + [sym_compound_literal_expression] = STATE(101), + [sym_parenthesized_expression] = STATE(101), + [sym_char_literal] = STATE(101), + [sym_null] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(199), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(197), + [sym_identifier] = ACTIONS(197), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1089] = { - [sym_parenthesized_expression] = STATE(1285), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(95), + [sym_pointer_expression] = STATE(95), + [sym_logical_expression] = STATE(95), + [sym_math_expression] = STATE(95), + [sym_cast_expression] = STATE(95), + [sym_field_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_assignment_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_shift_expression] = STATE(95), + [sym_subscript_expression] = STATE(95), + [sym_call_expression] = STATE(95), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(95), + [sym_bitwise_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_sizeof_expression] = STATE(95), + [sym_compound_literal_expression] = STATE(95), + [sym_parenthesized_expression] = STATE(95), + [sym_char_literal] = STATE(95), + [sym_null] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(183), + [sym_identifier] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1090] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(1242), - [sym_null] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), + [sym_concatenated_string] = STATE(65), + [sym_pointer_expression] = STATE(65), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(65), + [sym_call_expression] = STATE(65), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(65), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(65), + [sym_char_literal] = STATE(65), + [sym_null] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(127), + [sym_identifier] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1091] = { - [sym_do_statement] = STATE(1287), - [sym_goto_statement] = STATE(1287), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(1287), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_if_statement] = STATE(1287), - [sym_switch_statement] = STATE(1287), - [sym_for_statement] = STATE(1287), - [sym_return_statement] = STATE(1287), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(201), - [sym_type_definition] = STATE(1287), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [aux_sym_case_statement_repeat1] = STATE(1287), - [sym_break_statement] = STATE(1287), - [sym_continue_statement] = STATE(1287), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1287), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_labeled_statement] = STATE(1287), - [sym_expression_statement] = STATE(1287), - [sym_while_statement] = STATE(1287), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_default] = ACTIONS(3345), - [sym_identifier] = ACTIONS(2736), - [sym_true] = ACTIONS(15), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_long] = ACTIONS(426), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_static] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_while] = ACTIONS(2744), - [sym_false] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_case] = ACTIONS(3345), - [sym_null] = ACTIONS(15), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_union] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_short] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(75), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1290), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1092] = { - [anon_sym_LPAREN2] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(3363), - [sym_identifier] = ACTIONS(3365), - [anon_sym__Atomic] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_auto] = ACTIONS(3365), - [anon_sym_volatile] = ACTIONS(3365), - [anon_sym_inline] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3363), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_restrict] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_register] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), + [sym_concatenated_string] = STATE(1292), + [sym_pointer_expression] = STATE(1292), + [sym_logical_expression] = STATE(1292), + [sym_math_expression] = STATE(1292), + [sym_cast_expression] = STATE(1292), + [sym_field_expression] = STATE(1292), + [sym_conditional_expression] = STATE(1292), + [sym_assignment_expression] = STATE(1292), + [sym_relational_expression] = STATE(1292), + [sym_shift_expression] = STATE(1292), + [sym_subscript_expression] = STATE(1292), + [sym_call_expression] = STATE(1292), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1292), + [sym_bitwise_expression] = STATE(1292), + [sym_equality_expression] = STATE(1292), + [sym_sizeof_expression] = STATE(1292), + [sym_compound_literal_expression] = STATE(1292), + [sym_parenthesized_expression] = STATE(1292), + [sym_char_literal] = STATE(1292), + [sym_null] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1093] = { - [sym_enumerator] = STATE(823), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(527), + [aux_sym_concatenated_string_repeat1] = STATE(1293), + [sym_string_literal] = STATE(1293), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(221), + [anon_sym_AMP_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(215), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_LT_LT_EQ] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(221), + [anon_sym_GT_GT_EQ] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [1094] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(3367), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_concatenated_string] = STATE(1305), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1305), + [sym_math_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_relational_expression] = STATE(1305), + [sym_shift_expression] = STATE(1305), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1305), + [sym_bitwise_expression] = STATE(1305), + [sym_equality_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(1305), + [sym_char_literal] = STATE(1305), + [sym_null] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3382), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3380), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1095] = { - [sym_string_literal] = STATE(277), - [sym__expression] = STATE(1288), - [sym_logical_expression] = STATE(1288), - [sym_bitwise_expression] = STATE(1288), - [sym_cast_expression] = STATE(1288), - [sym_field_expression] = STATE(1288), - [sym_compound_literal_expression] = STATE(1288), - [sym_char_literal] = STATE(1288), - [sym_assignment_expression] = STATE(1288), - [sym_pointer_expression] = STATE(1288), - [sym_shift_expression] = STATE(1288), - [sym_math_expression] = STATE(1288), - [sym_call_expression] = STATE(1288), - [sym_conditional_expression] = STATE(1288), - [sym_equality_expression] = STATE(1288), - [sym_relational_expression] = STATE(1288), - [sym_sizeof_expression] = STATE(1288), - [sym_subscript_expression] = STATE(1288), - [sym_parenthesized_expression] = STATE(1288), - [sym_concatenated_string] = STATE(1288), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [sym_identifier] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_sizeof] = ACTIONS(561), - [sym_null] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(565), - [sym_number_literal] = ACTIONS(3371), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [sym_false] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(3384), }, [1096] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3386), }, [1097] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1291), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1291), - [sym__field_declaration_list_item] = STATE(1291), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1290), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1290), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1291), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1291), - [sym_field_declaration] = STATE(1291), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1307), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1098] = { + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(372), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(372), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1099] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3377), - [sym_preproc_arg] = ACTIONS(3379), + [sym_concatenated_string] = STATE(1309), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1309), + [sym_math_expression] = STATE(1309), + [sym_cast_expression] = STATE(1309), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1309), + [sym_assignment_expression] = STATE(1309), + [sym_relational_expression] = STATE(1309), + [sym_shift_expression] = STATE(1309), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(1308), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1309), + [sym_bitwise_expression] = STATE(1309), + [sym_equality_expression] = STATE(1309), + [sym_sizeof_expression] = STATE(1309), + [sym_compound_literal_expression] = STATE(1309), + [sym_parenthesized_expression] = STATE(1309), + [sym_char_literal] = STATE(1309), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3390), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3388), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1100] = { + [sym_subscript_designator] = STATE(1100), + [sym_field_designator] = STATE(1100), + [aux_sym_initializer_pair_repeat1] = STATE(1100), + [anon_sym_EQ] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3394), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3397), }, [1101] = { + [sym_concatenated_string] = STATE(1312), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1312), + [sym_math_expression] = STATE(1312), + [sym_cast_expression] = STATE(1312), + [aux_sym_initializer_pair_repeat1] = STATE(822), + [sym_field_expression] = STATE(817), + [sym_subscript_designator] = STATE(822), + [sym_field_designator] = STATE(822), + [sym_conditional_expression] = STATE(1312), + [sym_assignment_expression] = STATE(1312), + [sym_relational_expression] = STATE(1312), + [sym_shift_expression] = STATE(1312), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(1311), + [sym_initializer_pair] = STATE(1311), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1312), + [sym_bitwise_expression] = STATE(1312), + [sym_equality_expression] = STATE(1312), + [sym_sizeof_expression] = STATE(1312), + [sym_compound_literal_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_char_literal] = STATE(1312), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_null] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3402), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [sym_false] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(3404), + [sym_true] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2065), }, [1102] = { - [sym_function_field_declarator] = STATE(1298), - [sym__field_declarator] = STATE(1298), - [sym_pointer_field_declarator] = STATE(1298), - [sym_array_field_declarator] = STATE(1298), - [sym_bitfield_clause] = STATE(1299), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(3385), + [aux_sym_initializer_list_repeat1] = STATE(1314), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), }, [1103] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1300), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1300), - [sym__field_declaration_list_item] = STATE(1300), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(1300), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1300), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1300), - [sym_field_declaration] = STATE(1300), - [sym__declaration_specifiers] = STATE(1102), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2894), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2894), - [aux_sym_preproc_def_token1] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [aux_sym_concatenated_string_repeat1] = STATE(1315), + [sym_string_literal] = STATE(1315), + [anon_sym_PERCENT] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [1104] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [aux_sym_preproc_else_token1] = ACTIONS(434), - [aux_sym_preproc_if_token2] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [anon_sym_unsigned] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [aux_sym_preproc_elif_token1] = ACTIONS(434), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_register] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1105] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3389), + [sym_concatenated_string] = STATE(1316), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1316), + [sym_math_expression] = STATE(1316), + [sym_cast_expression] = STATE(1316), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1316), + [sym_relational_expression] = STATE(1316), + [sym_shift_expression] = STATE(1316), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1316), + [sym_bitwise_expression] = STATE(1316), + [sym_equality_expression] = STATE(1316), + [sym_sizeof_expression] = STATE(1316), + [sym_compound_literal_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_char_literal] = STATE(1316), + [sym_null] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3408), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1106] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1304), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1304), - [sym__field_declaration_list_item] = STATE(1304), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1303), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1303), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1304), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1304), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1304), - [sym_field_declaration] = STATE(1304), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3391), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1317), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1317), + [sym_math_expression] = STATE(1317), + [sym_cast_expression] = STATE(1317), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1317), + [sym_relational_expression] = STATE(1317), + [sym_shift_expression] = STATE(1317), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1317), + [sym_bitwise_expression] = STATE(1317), + [sym_equality_expression] = STATE(1317), + [sym_sizeof_expression] = STATE(1317), + [sym_compound_literal_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_char_literal] = STATE(1317), + [sym_null] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3414), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3412), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1107] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1306), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1306), - [sym__field_declaration_list_item] = STATE(1306), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1305), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1305), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1306), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1306), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1306), - [sym_field_declaration] = STATE(1306), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(3393), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1318), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1318), + [sym_math_expression] = STATE(1318), + [sym_cast_expression] = STATE(1318), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1318), + [sym_assignment_expression] = STATE(1318), + [sym_relational_expression] = STATE(1318), + [sym_shift_expression] = STATE(1318), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1318), + [sym_bitwise_expression] = STATE(1318), + [sym_equality_expression] = STATE(1318), + [sym_sizeof_expression] = STATE(1318), + [sym_compound_literal_expression] = STATE(1318), + [sym_parenthesized_expression] = STATE(1318), + [sym_char_literal] = STATE(1318), + [sym_null] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3418), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3416), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1108] = { - [sym_preproc_params] = STATE(1309), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(3397), + [sym_concatenated_string] = STATE(1319), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1319), + [sym_math_expression] = STATE(1319), + [sym_cast_expression] = STATE(1319), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1319), + [sym_assignment_expression] = STATE(1319), + [sym_relational_expression] = STATE(1319), + [sym_shift_expression] = STATE(1319), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1319), + [sym_bitwise_expression] = STATE(1319), + [sym_equality_expression] = STATE(1319), + [sym_sizeof_expression] = STATE(1319), + [sym_compound_literal_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_char_literal] = STATE(1319), + [sym_null] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3422), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3420), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1109] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), - [anon_sym_long] = ACTIONS(3399), - [anon_sym__Atomic] = ACTIONS(3399), - [sym_primitive_type] = ACTIONS(3399), - [anon_sym_auto] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_inline] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [sym_preproc_directive] = ACTIONS(3399), - [anon_sym_unsigned] = ACTIONS(3399), - [aux_sym_preproc_if_token1] = ACTIONS(3399), - [anon_sym_short] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_restrict] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), - [aux_sym_preproc_def_token1] = ACTIONS(3399), - [anon_sym_signed] = ACTIONS(3399), - [anon_sym_register] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), + [sym_concatenated_string] = STATE(1320), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1320), + [sym_math_expression] = STATE(1320), + [sym_cast_expression] = STATE(1320), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1320), + [sym_assignment_expression] = STATE(1320), + [sym_relational_expression] = STATE(1320), + [sym_shift_expression] = STATE(1320), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1320), + [sym_bitwise_expression] = STATE(1320), + [sym_equality_expression] = STATE(1320), + [sym_sizeof_expression] = STATE(1320), + [sym_compound_literal_expression] = STATE(1320), + [sym_parenthesized_expression] = STATE(1320), + [sym_char_literal] = STATE(1320), + [sym_null] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3424), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3424), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1110] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_else_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [sym_preproc_directive] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_elif_token1] = ACTIONS(2150), - [aux_sym_preproc_def_token1] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), + [sym_concatenated_string] = STATE(1321), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1321), + [sym_math_expression] = STATE(1321), + [sym_cast_expression] = STATE(1321), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1321), + [sym_assignment_expression] = STATE(1321), + [sym_relational_expression] = STATE(1321), + [sym_shift_expression] = STATE(1321), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1321), + [sym_bitwise_expression] = STATE(1321), + [sym_equality_expression] = STATE(1321), + [sym_sizeof_expression] = STATE(1321), + [sym_compound_literal_expression] = STATE(1321), + [sym_parenthesized_expression] = STATE(1321), + [sym_char_literal] = STATE(1321), + [sym_null] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3430), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3428), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1111] = { - [sym_bitfield_clause] = STATE(1311), - [sym_parameter_list] = STATE(872), - [aux_sym_field_declaration_repeat1] = STATE(1312), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(2154), + [sym_concatenated_string] = STATE(1322), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1322), + [sym_math_expression] = STATE(1322), + [sym_cast_expression] = STATE(1322), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1322), + [sym_assignment_expression] = STATE(1322), + [sym_relational_expression] = STATE(1322), + [sym_shift_expression] = STATE(1322), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1322), + [sym_bitwise_expression] = STATE(1322), + [sym_equality_expression] = STATE(1322), + [sym_sizeof_expression] = STATE(1322), + [sym_compound_literal_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_char_literal] = STATE(1322), + [sym_null] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3434), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3432), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3432), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1112] = { + [sym_concatenated_string] = STATE(1323), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1323), + [sym_math_expression] = STATE(1323), + [sym_cast_expression] = STATE(1323), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1323), + [sym_assignment_expression] = STATE(1323), + [sym_relational_expression] = STATE(1323), + [sym_shift_expression] = STATE(1323), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1323), + [sym_bitwise_expression] = STATE(1323), + [sym_equality_expression] = STATE(1323), + [sym_sizeof_expression] = STATE(1323), + [sym_compound_literal_expression] = STATE(1323), + [sym_parenthesized_expression] = STATE(1323), + [sym_char_literal] = STATE(1323), + [sym_null] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3438), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3436), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1113] = { - [aux_sym_preproc_if_token2] = ACTIONS(3405), + [sym_concatenated_string] = STATE(1324), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1324), + [sym_math_expression] = STATE(1324), + [sym_cast_expression] = STATE(1324), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1324), + [sym_relational_expression] = STATE(1324), + [sym_shift_expression] = STATE(1324), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1324), + [sym_bitwise_expression] = STATE(1324), + [sym_equality_expression] = STATE(1324), + [sym_sizeof_expression] = STATE(1324), + [sym_compound_literal_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1324), + [sym_char_literal] = STATE(1324), + [sym_null] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3442), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3440), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1114] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3407), - [anon_sym_long] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2176), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [aux_sym_preproc_else_token1] = ACTIONS(3410), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(3415), - [anon_sym_short] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3407), - [aux_sym_preproc_elif_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2170), + [sym_concatenated_string] = STATE(1325), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(1325), + [sym_math_expression] = STATE(1325), + [sym_cast_expression] = STATE(1325), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(1325), + [sym_assignment_expression] = STATE(1325), + [sym_relational_expression] = STATE(1325), + [sym_shift_expression] = STATE(1325), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(1325), + [sym_bitwise_expression] = STATE(1325), + [sym_equality_expression] = STATE(1325), + [sym_sizeof_expression] = STATE(1325), + [sym_compound_literal_expression] = STATE(1325), + [sym_parenthesized_expression] = STATE(1325), + [sym_char_literal] = STATE(1325), + [sym_null] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(3446), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3444), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [1115] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3421), - [anon_sym_long] = ACTIONS(3421), - [anon_sym__Atomic] = ACTIONS(3421), - [sym_primitive_type] = ACTIONS(3421), - [anon_sym_auto] = ACTIONS(3421), - [anon_sym_volatile] = ACTIONS(3421), - [anon_sym_inline] = ACTIONS(3421), - [anon_sym_extern] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [sym_preproc_directive] = ACTIONS(3421), - [anon_sym_unsigned] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [anon_sym_short] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_restrict] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3421), - [aux_sym_preproc_def_token1] = ACTIONS(3421), - [anon_sym_signed] = ACTIONS(3421), - [anon_sym_register] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), }, [1116] = { - [aux_sym_preproc_if_token2] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_EQ] = ACTIONS(3450), + [anon_sym_LPAREN2] = ACTIONS(3450), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_COLON] = ACTIONS(3450), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym___attribute__] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), }, [1117] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_struct] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), + [aux_sym_parameter_list_repeat1] = STATE(1117), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), }, [1118] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [anon_sym_unsigned] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), + [aux_sym__declaration_specifiers_repeat1] = STATE(1118), + [sym_attribute_specifier] = STATE(1118), + [sym_type_qualifier] = STATE(1118), + [sym_storage_class_specifier] = STATE(1118), + [anon_sym_volatile] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(836), + [anon_sym_register] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(1670), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(834), + [anon_sym_const] = ACTIONS(836), + [anon_sym_LPAREN2] = ACTIONS(1670), + [anon_sym__Atomic] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_auto] = ACTIONS(839), + [anon_sym_inline] = ACTIONS(839), + [anon_sym___attribute__] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(1670), }, [1119] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3427), + [aux_sym__declaration_specifiers_repeat1] = STATE(1118), + [sym_attribute_specifier] = STATE(1118), + [sym_type_qualifier] = STATE(1118), + [sym_storage_class_specifier] = STATE(1118), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(1494), }, [1120] = { - [sym_function_field_declarator] = STATE(1122), - [sym__field_declarator] = STATE(1122), - [sym_pointer_field_declarator] = STATE(1122), - [sym_array_field_declarator] = STATE(1122), - [sym_type_qualifier] = STATE(662), - [aux_sym_type_definition_repeat1] = STATE(662), - [anon_sym_LPAREN2] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_const] = ACTIONS(11), + [sym_function_declarator] = STATE(1327), + [sym__abstract_declarator] = STATE(827), + [sym_pointer_declarator] = STATE(1327), + [sym_type_qualifier] = STATE(1326), + [aux_sym_type_definition_repeat1] = STATE(1326), + [sym_abstract_array_declarator] = STATE(827), + [sym__declarator] = STATE(1327), + [sym_parameter_list] = STATE(261), + [sym_abstract_function_declarator] = STATE(827), + [sym_array_declarator] = STATE(1327), + [sym_abstract_pointer_declarator] = STATE(827), + [sym_identifier] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(532), }, [1121] = { - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), + [sym_parameter_list] = STATE(1124), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1634), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(953), }, [1122] = { - [sym_parameter_list] = STATE(872), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3431), + [sym_function_declarator] = STATE(665), + [sym__abstract_declarator] = STATE(520), + [sym_pointer_declarator] = STATE(665), + [sym_type_qualifier] = STATE(1328), + [aux_sym_type_definition_repeat1] = STATE(1328), + [sym_abstract_array_declarator] = STATE(520), + [sym__declarator] = STATE(665), + [sym_parameter_list] = STATE(261), + [sym_abstract_function_declarator] = STATE(520), + [sym_array_declarator] = STATE(665), + [sym_abstract_pointer_declarator] = STATE(520), + [sym_identifier] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(532), }, [1123] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(3433), + [anon_sym_volatile] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(474), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(219), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(3461), }, [1124] = { - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), + [sym_attribute_specifier] = STATE(1329), + [aux_sym_function_declarator_repeat1] = STATE(1329), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_LPAREN2] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1666), }, [1125] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), }, [1126] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(1318), - [sym_logical_expression] = STATE(1318), - [sym_bitwise_expression] = STATE(1318), - [sym_cast_expression] = STATE(1318), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(1318), - [sym_char_literal] = STATE(1318), - [sym_assignment_expression] = STATE(1318), - [sym_type_qualifier] = STATE(719), - [sym_pointer_expression] = STATE(357), - [sym_math_expression] = STATE(1318), - [sym_call_expression] = STATE(357), - [sym_shift_expression] = STATE(1318), - [aux_sym_type_definition_repeat1] = STATE(719), - [sym_conditional_expression] = STATE(1318), - [sym_equality_expression] = STATE(1318), - [sym_relational_expression] = STATE(1318), - [sym_sizeof_expression] = STATE(1318), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(1318), - [sym_concatenated_string] = STATE(1318), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(11), - [sym_true] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_restrict] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_const] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(3433), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [1127] = { - [sym_parameter_list] = STATE(872), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3443), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [1128] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_auto] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_struct] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), + [anon_sym_case] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3470), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_AMP] = ACTIONS(3470), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3468), + [ts_builtin_sym_end] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [anon_sym_auto] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), }, [1129] = { + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_RPAREN] = ACTIONS(3472), + [anon_sym_LPAREN2] = ACTIONS(3472), + [anon_sym_COMMA] = ACTIONS(3472), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3472), }, [1130] = { - [aux_sym_field_declaration_repeat1] = STATE(1130), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [1131] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [1132] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1321), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3476), + [anon_sym__Atomic] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3476), + [sym_number_literal] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3476), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [aux_sym_preproc_include_token1] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), + [ts_builtin_sym_end] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), }, [1133] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1322), - [sym_logical_expression] = STATE(1322), - [sym_bitwise_expression] = STATE(1322), - [sym_cast_expression] = STATE(1322), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1322), - [sym_char_literal] = STATE(1322), - [sym_assignment_expression] = STATE(1322), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1322), - [sym_math_expression] = STATE(1322), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1322), - [sym_equality_expression] = STATE(1322), - [sym_relational_expression] = STATE(1322), - [sym_sizeof_expression] = STATE(1322), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1322), - [sym_concatenated_string] = STATE(1322), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3456), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3454), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1134] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(3480), + [sym_comment] = ACTIONS(3), }, [1135] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1325), - [sym_logical_expression] = STATE(1325), - [sym_bitwise_expression] = STATE(1325), - [sym_cast_expression] = STATE(1325), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1325), - [sym_char_literal] = STATE(1325), - [sym_assignment_expression] = STATE(1325), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1325), - [sym_math_expression] = STATE(1325), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1325), - [sym_equality_expression] = STATE(1325), - [sym_relational_expression] = STATE(1325), - [sym_sizeof_expression] = STATE(1325), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1325), - [sym_concatenated_string] = STATE(1325), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3464), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3466), - [sym_false] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_for_statement_repeat1] = STATE(1334), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1136] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1335), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1335), + [sym_math_expression] = STATE(1335), + [sym_cast_expression] = STATE(1335), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1335), + [sym_assignment_expression] = STATE(1335), + [sym_relational_expression] = STATE(1335), + [sym_shift_expression] = STATE(1335), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1335), + [sym_bitwise_expression] = STATE(1335), + [sym_equality_expression] = STATE(1335), + [sym_sizeof_expression] = STATE(1335), + [sym_compound_literal_expression] = STATE(1335), + [sym_parenthesized_expression] = STATE(1335), + [sym_char_literal] = STATE(1335), + [sym_null] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3482), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3482), + [anon_sym_RPAREN] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1137] = { - [anon_sym_while] = ACTIONS(1240), + [sym_parameter_list] = STATE(861), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2399), [sym_comment] = ACTIONS(3), - [anon_sym_else] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(2399), }, [1138] = { + [sym_attribute_specifier] = STATE(1336), + [aux_sym_function_declarator_repeat1] = STATE(1336), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2426), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3472), - [anon_sym_RPAREN] = ACTIONS(3472), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2426), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(2426), }, [1139] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3474), - [sym_preproc_arg] = ACTIONS(3476), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1140] = { - [aux_sym_preproc_params_repeat1] = STATE(1140), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3478), - [anon_sym_RPAREN] = ACTIONS(3472), + [sym_concatenated_string] = STATE(1338), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1338), + [sym_math_expression] = STATE(1338), + [sym_cast_expression] = STATE(1338), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1338), + [sym_relational_expression] = STATE(1338), + [sym_shift_expression] = STATE(1338), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1338), + [sym_bitwise_expression] = STATE(1338), + [sym_equality_expression] = STATE(1338), + [sym_sizeof_expression] = STATE(1338), + [sym_compound_literal_expression] = STATE(1338), + [sym_parenthesized_expression] = STATE(1338), + [sym_char_literal] = STATE(1338), + [sym_null] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3488), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3486), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1141] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1142] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1329), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1340), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1340), + [sym_math_expression] = STATE(1340), + [sym_cast_expression] = STATE(1340), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1340), + [sym_relational_expression] = STATE(1340), + [sym_shift_expression] = STATE(1340), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1340), + [sym_bitwise_expression] = STATE(1340), + [sym_equality_expression] = STATE(1340), + [sym_sizeof_expression] = STATE(1340), + [sym_compound_literal_expression] = STATE(1340), + [sym_parenthesized_expression] = STATE(1340), + [sym_char_literal] = STATE(1340), + [sym_null] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3496), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3494), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3492), + [sym_true] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1143] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1330), - [sym_logical_expression] = STATE(1330), - [sym_bitwise_expression] = STATE(1330), - [sym_cast_expression] = STATE(1330), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1330), - [sym_char_literal] = STATE(1330), - [sym_assignment_expression] = STATE(1330), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1330), - [sym_math_expression] = STATE(1330), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1330), - [sym_equality_expression] = STATE(1330), - [sym_relational_expression] = STATE(1330), - [sym_sizeof_expression] = STATE(1330), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1330), - [sym_concatenated_string] = STATE(1330), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3481), + [sym_while_statement] = STATE(1341), + [sym_continue_statement] = STATE(1341), + [sym_goto_statement] = STATE(1341), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_declaration] = STATE(1341), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1341), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_expression_statement] = STATE(1341), + [sym_if_statement] = STATE(1341), + [sym_do_statement] = STATE(1341), + [sym_for_statement] = STATE(1341), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1341), + [sym_sizeof_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_switch_statement] = STATE(1341), + [sym_return_statement] = STATE(1341), + [sym_break_statement] = STATE(1341), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [aux_sym_case_statement_repeat1] = STATE(1341), + [sym_labeled_statement] = STATE(1341), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(3498), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_short] = ACTIONS(553), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_default] = ACTIONS(3498), + [sym_true] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_register] = ACTIONS(17), + [sym_identifier] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1144] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3502), }, [1145] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1333), - [sym_logical_expression] = STATE(1333), - [sym_bitwise_expression] = STATE(1333), - [sym_cast_expression] = STATE(1333), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1333), - [sym_char_literal] = STATE(1333), - [sym_assignment_expression] = STATE(1333), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1333), - [sym_math_expression] = STATE(1333), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1333), - [sym_equality_expression] = STATE(1333), - [sym_relational_expression] = STATE(1333), - [sym_sizeof_expression] = STATE(1333), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1333), - [sym_concatenated_string] = STATE(1333), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3493), - [sym_false] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(207), + [sym_parenthesized_expression] = STATE(1343), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1146] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_volatile] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_const] = ACTIONS(219), + [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym__Atomic] = ACTIONS(219), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_static] = ACTIONS(219), + [anon_sym_restrict] = ACTIONS(219), + [anon_sym_register] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [sym_identifier] = ACTIONS(219), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_auto] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_inline] = ACTIONS(219), + [anon_sym___attribute__] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(221), }, [1147] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [sym_parenthesized_expression] = STATE(1345), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1148] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(863), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(861), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_while_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_goto_statement] = STATE(1346), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_declaration] = STATE(1346), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1346), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_expression_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_do_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1346), + [sym_sizeof_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_switch_statement] = STATE(1346), + [sym_return_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [aux_sym_case_statement_repeat1] = STATE(1346), + [sym_labeled_statement] = STATE(1346), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(3498), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_short] = ACTIONS(553), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_default] = ACTIONS(3498), + [sym_true] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_register] = ACTIONS(17), + [sym_identifier] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1149] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_concatenated_string] = STATE(1348), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1348), + [sym_math_expression] = STATE(1348), + [sym_cast_expression] = STATE(1348), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1348), + [sym_relational_expression] = STATE(1348), + [sym_shift_expression] = STATE(1348), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1348), + [sym_bitwise_expression] = STATE(1348), + [sym_equality_expression] = STATE(1348), + [sym_sizeof_expression] = STATE(1348), + [sym_compound_literal_expression] = STATE(1348), + [sym_parenthesized_expression] = STATE(1348), + [sym_char_literal] = STATE(1348), + [sym_null] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3508), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3506), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3510), + [sym_true] = ACTIONS(3506), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1150] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1151] = { + [sym_parenthesized_expression] = STATE(1350), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), + }, + [1152] = { + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), + }, + [1153] = { + [sym_parenthesized_expression] = STATE(1352), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), + }, + [1154] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3516), + }, + [1155] = { + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(3518), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + }, + [1156] = { + [anon_sym_volatile] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_COMMA] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_COLON] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym_RPAREN] = ACTIONS(3522), + [anon_sym_auto] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3522), + }, + [1157] = { + [sym_enumerator] = STATE(880), + [sym_identifier] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + }, + [1158] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1776), + }, + [1159] = { + [sym_concatenated_string] = STATE(1355), + [sym_pointer_expression] = STATE(1355), + [sym_logical_expression] = STATE(1355), + [sym_math_expression] = STATE(1355), + [sym_cast_expression] = STATE(1355), + [sym_field_expression] = STATE(1355), + [sym_conditional_expression] = STATE(1355), + [sym_assignment_expression] = STATE(1355), + [sym_relational_expression] = STATE(1355), + [sym_shift_expression] = STATE(1355), + [sym_subscript_expression] = STATE(1355), + [sym_call_expression] = STATE(1355), + [sym_string_literal] = STATE(310), + [sym__expression] = STATE(1355), + [sym_bitwise_expression] = STATE(1355), + [sym_equality_expression] = STATE(1355), + [sym_sizeof_expression] = STATE(1355), + [sym_compound_literal_expression] = STATE(1355), + [sym_parenthesized_expression] = STATE(1355), + [sym_char_literal] = STATE(1355), + [sym_null] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(625), + [sym_number_literal] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(629), + [sym_true] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_sizeof] = ACTIONS(635), }, - [1151] = { + [1160] = { + [sym_argument_list] = STATE(154), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_PERCENT] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), }, - [1152] = { - [sym_string_literal] = STATE(1152), - [aux_sym_concatenated_string_repeat1] = STATE(1152), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [1161] = { + [anon_sym_COMMA] = ACTIONS(3530), + [anon_sym_RPAREN] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), }, - [1153] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [1162] = { + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3532), + [sym_preproc_arg] = ACTIONS(3534), }, - [1154] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), - [anon_sym_LT_LT_EQ] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_EQ] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), + [1163] = { + [aux_sym_preproc_params_repeat1] = STATE(1163), + [anon_sym_COMMA] = ACTIONS(3536), + [anon_sym_RPAREN] = ACTIONS(3530), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), }, - [1155] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [1164] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3543), + [anon_sym_CARET] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(3551), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1156] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), + [1165] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1271), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), - }, - [1157] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(3021), [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), - }, - [1158] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_sizeof] = ACTIONS(1522), }, - [1159] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), + [1166] = { [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(3555), }, - [1160] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [1167] = { + [aux_sym_concatenated_string_repeat1] = STATE(1167), + [sym_string_literal] = STATE(1167), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_RBRACK] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, - [1161] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), + [1168] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1169] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), [sym_comment] = ACTIONS(3), [anon_sym_PERCENT_EQ] = ACTIONS(1506), [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), [anon_sym_AMP] = ACTIONS(1508), [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), - }, - [1162] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), [anon_sym_LT_LT_EQ] = ACTIONS(1506), [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), [anon_sym_SLASH_EQ] = ACTIONS(1506), [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(1508), [anon_sym_PIPE_EQ] = ACTIONS(1506), [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), - }, - [1163] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(1338), - [sym_logical_expression] = STATE(1338), - [sym_bitwise_expression] = STATE(1338), - [sym_cast_expression] = STATE(1338), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(1338), - [sym_char_literal] = STATE(1338), - [sym_assignment_expression] = STATE(1338), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(1338), - [sym_math_expression] = STATE(1338), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(1338), - [sym_equality_expression] = STATE(1338), - [sym_relational_expression] = STATE(1338), - [sym_sizeof_expression] = STATE(1338), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(1338), - [sym_concatenated_string] = STATE(1338), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), - [sym_null] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), - [sym_number_literal] = ACTIONS(3525), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_false] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(879), - }, - [1164] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_RBRACK] = ACTIONS(2107), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(3527), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - }, - [1165] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1166] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3537), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), + [1170] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3543), [anon_sym_CARET] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1167] = { + [1171] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3547), - }, - [1168] = { - [sym_string_literal] = STATE(1168), - [aux_sym_concatenated_string_repeat1] = STATE(1168), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(1475), - }, - [1169] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), [anon_sym_AMP] = ACTIONS(1498), [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1496), - }, - [1170] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), [anon_sym_LT_LT_EQ] = ACTIONS(1500), [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), [anon_sym_EQ_EQ] = ACTIONS(1500), [anon_sym_GT_EQ] = ACTIONS(1500), [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), [anon_sym_SLASH_EQ] = ACTIONS(1500), [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1498), [anon_sym_PIPE_EQ] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), + [anon_sym_PIPE] = ACTIONS(1498), [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1171] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), + [1172] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1173] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3543), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1174] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3543), [anon_sym_CARET] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1172] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), + [1175] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1176] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), [anon_sym_AMP] = ACTIONS(3543), [anon_sym_CARET] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1177] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3557), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1178] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(879), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3559), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(875), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(1776), + }, + [1179] = { + [sym_concatenated_string] = STATE(1358), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(1358), + [sym_math_expression] = STATE(1358), + [sym_cast_expression] = STATE(1358), + [sym_field_expression] = STATE(345), + [sym_conditional_expression] = STATE(1358), + [sym_assignment_expression] = STATE(1358), + [sym_relational_expression] = STATE(1358), + [sym_shift_expression] = STATE(1358), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_string_literal] = STATE(348), + [sym__expression] = STATE(1358), + [sym_bitwise_expression] = STATE(1358), + [sym_equality_expression] = STATE(1358), + [sym_sizeof_expression] = STATE(1358), + [sym_compound_literal_expression] = STATE(1358), + [sym_parenthesized_expression] = STATE(1358), + [sym_char_literal] = STATE(1358), + [sym_null] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(863), + [sym_number_literal] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3563), + [sym_identifier] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(871), + [sym_true] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_sizeof] = ACTIONS(879), }, - [1173] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1512), + [1180] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(3579), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1174] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3549), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [1181] = { + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, - [1175] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), + [1182] = { [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(3583), }, - [1176] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_CARET] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1504), + [1183] = { + [aux_sym_concatenated_string_repeat1] = STATE(1183), + [sym_string_literal] = STATE(1183), + [anon_sym_PERCENT] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, - [1177] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), + [1184] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1185] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), [sym_comment] = ACTIONS(3), [anon_sym_PERCENT_EQ] = ACTIONS(1506), [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), [anon_sym_AMP] = ACTIONS(1508), [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1506), - }, - [1178] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(306), [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), [anon_sym_LT_LT_EQ] = ACTIONS(1506), [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), [anon_sym_SLASH_EQ] = ACTIONS(1506), [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(1508), [anon_sym_PIPE_EQ] = ACTIONS(1506), [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(1506), - }, - [1179] = { - [sym_string_literal] = STATE(362), - [sym__expression] = STATE(1341), - [sym_logical_expression] = STATE(1341), - [sym_bitwise_expression] = STATE(1341), - [sym_cast_expression] = STATE(1341), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(1341), - [sym_char_literal] = STATE(1341), - [sym_assignment_expression] = STATE(1341), - [sym_pointer_expression] = STATE(357), - [sym_shift_expression] = STATE(1341), - [sym_math_expression] = STATE(1341), - [sym_call_expression] = STATE(357), - [sym_conditional_expression] = STATE(1341), - [sym_equality_expression] = STATE(1341), - [sym_relational_expression] = STATE(1341), - [sym_sizeof_expression] = STATE(1341), - [sym_subscript_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(1341), - [sym_concatenated_string] = STATE(1341), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_true] = ACTIONS(3551), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_sizeof] = ACTIONS(899), - [sym_null] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(903), - [sym_number_literal] = ACTIONS(3553), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [sym_false] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(907), - }, - [1180] = { - [anon_sym_LPAREN2] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3555), - [anon_sym_SEMI] = ACTIONS(3555), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_RPAREN] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3555), - }, - [1181] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2403), - [anon_sym_PIPE_PIPE] = ACTIONS(2405), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT_GT] = ACTIONS(1662), - [anon_sym_LT_EQ] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(322), - }, - [1182] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), - }, - [1183] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), - }, - [1184] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3559), - }, - [1185] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1186] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3563), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1187] = { - [sym__expression] = STATE(52), - [sym_logical_expression] = STATE(52), - [sym_bitwise_expression] = STATE(52), - [sym_cast_expression] = STATE(52), - [sym_type_descriptor] = STATE(1345), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(52), - [sym_char_literal] = STATE(52), - [sym_type_qualifier] = STATE(55), - [aux_sym_type_definition_repeat1] = STATE(55), - [sym_union_specifier] = STATE(58), - [sym_struct_specifier] = STATE(58), - [sym_comma_expression] = STATE(56), - [sym_conditional_expression] = STATE(52), - [sym_equality_expression] = STATE(52), - [sym_relational_expression] = STATE(52), - [sym_sizeof_expression] = STATE(52), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(52), - [sym_concatenated_string] = STATE(52), - [sym_string_literal] = STATE(57), - [sym_macro_type_specifier] = STATE(58), - [sym__type_specifier] = STATE(58), - [sym_sized_type_specifier] = STATE(58), - [sym_assignment_expression] = STATE(52), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(52), - [sym_math_expression] = STATE(52), - [sym_call_expression] = STATE(54), - [sym_enum_specifier] = STATE(58), - [aux_sym_sized_type_specifier_repeat1] = STATE(59), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [anon_sym_long] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(103), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [anon_sym_union] = ACTIONS(59), - [sym_null] = ACTIONS(95), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(97), - [anon_sym_short] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [1188] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1189] = { - [sym_string_literal] = STATE(1346), - [aux_sym_concatenated_string_repeat1] = STATE(1346), - [anon_sym_LPAREN2] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(687), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1190] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1347), - [sym_logical_expression] = STATE(1347), - [sym_bitwise_expression] = STATE(1347), - [sym_cast_expression] = STATE(1347), - [sym_field_expression] = STATE(1347), - [sym_compound_literal_expression] = STATE(1347), - [sym_char_literal] = STATE(1347), - [sym_assignment_expression] = STATE(1347), - [sym_pointer_expression] = STATE(1347), - [sym_shift_expression] = STATE(1347), - [sym_math_expression] = STATE(1347), - [sym_call_expression] = STATE(1347), - [sym_conditional_expression] = STATE(1347), - [sym_equality_expression] = STATE(1347), - [sym_relational_expression] = STATE(1347), - [sym_sizeof_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_parenthesized_expression] = STATE(1347), - [sym_concatenated_string] = STATE(1347), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3571), - [sym_true] = ACTIONS(3571), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3571), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3573), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(1732), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1191] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1348), - [sym_logical_expression] = STATE(1348), - [sym_bitwise_expression] = STATE(1348), - [sym_cast_expression] = STATE(1348), - [sym_field_expression] = STATE(1348), - [sym_compound_literal_expression] = STATE(1348), - [sym_char_literal] = STATE(1348), - [sym_assignment_expression] = STATE(1348), - [sym_pointer_expression] = STATE(1348), - [sym_shift_expression] = STATE(1348), - [sym_math_expression] = STATE(1348), - [sym_call_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1348), - [sym_equality_expression] = STATE(1348), - [sym_relational_expression] = STATE(1348), - [sym_sizeof_expression] = STATE(1348), - [sym_subscript_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3575), - [sym_true] = ACTIONS(3575), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3575), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3577), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(1732), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1192] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1349), - [sym_logical_expression] = STATE(1349), - [sym_bitwise_expression] = STATE(1349), - [sym_cast_expression] = STATE(1349), - [sym_field_expression] = STATE(1349), - [sym_compound_literal_expression] = STATE(1349), - [sym_char_literal] = STATE(1349), - [sym_assignment_expression] = STATE(1349), - [sym_pointer_expression] = STATE(1349), - [sym_shift_expression] = STATE(1349), - [sym_math_expression] = STATE(1349), - [sym_call_expression] = STATE(1349), - [sym_conditional_expression] = STATE(1349), - [sym_equality_expression] = STATE(1349), - [sym_relational_expression] = STATE(1349), - [sym_sizeof_expression] = STATE(1349), - [sym_subscript_expression] = STATE(1349), - [sym_parenthesized_expression] = STATE(1349), - [sym_concatenated_string] = STATE(1349), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3579), - [sym_true] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3579), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3579), - [anon_sym_AMP] = ACTIONS(1732), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1193] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1350), - [sym_logical_expression] = STATE(1350), - [sym_bitwise_expression] = STATE(1350), - [sym_cast_expression] = STATE(1350), - [sym_field_expression] = STATE(1350), - [sym_compound_literal_expression] = STATE(1350), - [sym_char_literal] = STATE(1350), - [sym_assignment_expression] = STATE(1350), - [sym_pointer_expression] = STATE(1350), - [sym_shift_expression] = STATE(1350), - [sym_math_expression] = STATE(1350), - [sym_call_expression] = STATE(1350), - [sym_conditional_expression] = STATE(1350), - [sym_equality_expression] = STATE(1350), - [sym_relational_expression] = STATE(1350), - [sym_sizeof_expression] = STATE(1350), - [sym_subscript_expression] = STATE(1350), - [sym_parenthesized_expression] = STATE(1350), - [sym_concatenated_string] = STATE(1350), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3583), - [sym_true] = ACTIONS(3583), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3583), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3585), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3583), - [anon_sym_AMP] = ACTIONS(1732), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [1194] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1351), - [sym_logical_expression] = STATE(1351), - [sym_bitwise_expression] = STATE(1351), - [sym_cast_expression] = STATE(1351), - [sym_field_expression] = STATE(1351), - [sym_compound_literal_expression] = STATE(1351), - [sym_char_literal] = STATE(1351), - [sym_assignment_expression] = STATE(1351), - [sym_pointer_expression] = STATE(1351), - [sym_shift_expression] = STATE(1351), - [sym_math_expression] = STATE(1351), - [sym_call_expression] = STATE(1351), - [sym_conditional_expression] = STATE(1351), - [sym_equality_expression] = STATE(1351), - [sym_relational_expression] = STATE(1351), - [sym_sizeof_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), - [sym_parenthesized_expression] = STATE(1351), - [sym_concatenated_string] = STATE(1351), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3587), - [sym_true] = ACTIONS(3587), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3587), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3589), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3587), - [anon_sym_AMP] = ACTIONS(1732), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(935), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3589), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1195] = { - [sym_string_literal] = STATE(351), - [sym__expression] = STATE(1352), - [sym_logical_expression] = STATE(1352), - [sym_bitwise_expression] = STATE(1352), - [sym_cast_expression] = STATE(1352), - [sym_field_expression] = STATE(346), - [sym_compound_literal_expression] = STATE(1352), - [sym_char_literal] = STATE(1352), - [sym_assignment_expression] = STATE(1352), - [sym_pointer_expression] = STATE(346), - [sym_shift_expression] = STATE(1352), - [sym_math_expression] = STATE(1352), - [sym_call_expression] = STATE(346), - [sym_conditional_expression] = STATE(1352), - [sym_equality_expression] = STATE(1352), - [sym_relational_expression] = STATE(1352), - [sym_sizeof_expression] = STATE(1352), - [sym_subscript_expression] = STATE(346), - [sym_parenthesized_expression] = STATE(1352), - [sym_concatenated_string] = STATE(1352), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_true] = ACTIONS(3591), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_sizeof] = ACTIONS(871), + [sym_concatenated_string] = STATE(1361), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(1361), + [sym_math_expression] = STATE(1361), + [sym_cast_expression] = STATE(1361), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1361), + [sym_relational_expression] = STATE(1361), + [sym_shift_expression] = STATE(1361), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(1361), + [sym_bitwise_expression] = STATE(1361), + [sym_equality_expression] = STATE(1361), + [sym_sizeof_expression] = STATE(1361), + [sym_compound_literal_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_char_literal] = STATE(1361), [sym_null] = ACTIONS(3591), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(919), [sym_number_literal] = ACTIONS(3593), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), [sym_false] = ACTIONS(3591), - [anon_sym_AMP] = ACTIONS(879), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(3591), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [1196] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1353), - [sym_logical_expression] = STATE(1353), - [sym_bitwise_expression] = STATE(1353), - [sym_cast_expression] = STATE(1353), - [sym_field_expression] = STATE(1353), - [sym_compound_literal_expression] = STATE(1353), - [sym_char_literal] = STATE(1353), - [sym_assignment_expression] = STATE(1353), - [sym_pointer_expression] = STATE(1353), - [sym_shift_expression] = STATE(1353), - [sym_math_expression] = STATE(1353), - [sym_call_expression] = STATE(1353), - [sym_conditional_expression] = STATE(1353), - [sym_equality_expression] = STATE(1353), - [sym_relational_expression] = STATE(1353), - [sym_sizeof_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_parenthesized_expression] = STATE(1353), - [sym_concatenated_string] = STATE(1353), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3595), - [sym_true] = ACTIONS(3595), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(1732), + [sym_attribute_specifier] = STATE(1196), + [aux_sym_function_declarator_repeat1] = STATE(1196), + [anon_sym_RPAREN] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [anon_sym___attribute__] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), }, [1197] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1354), - [sym_logical_expression] = STATE(1354), - [sym_bitwise_expression] = STATE(1354), - [sym_cast_expression] = STATE(1354), - [sym_field_expression] = STATE(1354), - [sym_compound_literal_expression] = STATE(1354), - [sym_char_literal] = STATE(1354), - [sym_assignment_expression] = STATE(1354), - [sym_pointer_expression] = STATE(1354), - [sym_shift_expression] = STATE(1354), - [sym_math_expression] = STATE(1354), - [sym_call_expression] = STATE(1354), - [sym_conditional_expression] = STATE(1354), - [sym_equality_expression] = STATE(1354), - [sym_relational_expression] = STATE(1354), - [sym_sizeof_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_parenthesized_expression] = STATE(1354), - [sym_concatenated_string] = STATE(1354), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3599), - [sym_true] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(3595), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_COMMA] = ACTIONS(3595), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3599), - [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3595), }, [1198] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(364), - [sym_logical_expression] = STATE(364), - [sym_bitwise_expression] = STATE(364), - [sym_cast_expression] = STATE(364), - [sym_field_expression] = STATE(364), - [sym_compound_literal_expression] = STATE(364), - [sym_char_literal] = STATE(364), - [sym_assignment_expression] = STATE(364), - [sym_pointer_expression] = STATE(364), - [sym_shift_expression] = STATE(364), - [sym_math_expression] = STATE(364), - [sym_call_expression] = STATE(364), - [sym_conditional_expression] = STATE(364), - [sym_equality_expression] = STATE(364), - [sym_relational_expression] = STATE(364), - [sym_sizeof_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym_parenthesized_expression] = STATE(364), - [sym_concatenated_string] = STATE(364), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(909), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(1732), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1199] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1355), - [sym_logical_expression] = STATE(1355), - [sym_bitwise_expression] = STATE(1355), - [sym_cast_expression] = STATE(1355), - [sym_field_expression] = STATE(1355), - [sym_compound_literal_expression] = STATE(1355), - [sym_char_literal] = STATE(1355), - [sym_assignment_expression] = STATE(1355), - [sym_pointer_expression] = STATE(1355), - [sym_shift_expression] = STATE(1355), - [sym_math_expression] = STATE(1355), - [sym_call_expression] = STATE(1355), - [sym_conditional_expression] = STATE(1355), - [sym_equality_expression] = STATE(1355), - [sym_relational_expression] = STATE(1355), - [sym_sizeof_expression] = STATE(1355), - [sym_subscript_expression] = STATE(1355), - [sym_parenthesized_expression] = STATE(1355), - [sym_concatenated_string] = STATE(1355), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3603), - [sym_true] = ACTIONS(3603), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3603), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3605), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(3597), [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3603), - [anon_sym_AMP] = ACTIONS(1732), }, [1200] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1356), - [sym_logical_expression] = STATE(1356), - [sym_bitwise_expression] = STATE(1356), - [sym_cast_expression] = STATE(1356), - [sym_field_expression] = STATE(1356), - [sym_compound_literal_expression] = STATE(1356), - [sym_char_literal] = STATE(1356), - [sym_assignment_expression] = STATE(1356), - [sym_pointer_expression] = STATE(1356), - [sym_shift_expression] = STATE(1356), - [sym_math_expression] = STATE(1356), - [sym_call_expression] = STATE(1356), - [sym_conditional_expression] = STATE(1356), - [sym_equality_expression] = STATE(1356), - [sym_relational_expression] = STATE(1356), - [sym_sizeof_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_concatenated_string] = STATE(1356), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(3607), - [sym_true] = ACTIONS(3607), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(3607), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(3607), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_for_statement_repeat1] = STATE(1363), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1201] = { - [sym_string_literal] = STATE(1201), - [aux_sym_concatenated_string_repeat1] = STATE(1201), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [sym_concatenated_string] = STATE(1364), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1364), + [sym_math_expression] = STATE(1364), + [sym_cast_expression] = STATE(1364), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1364), + [sym_assignment_expression] = STATE(1364), + [sym_relational_expression] = STATE(1364), + [sym_shift_expression] = STATE(1364), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1364), + [sym_bitwise_expression] = STATE(1364), + [sym_equality_expression] = STATE(1364), + [sym_sizeof_expression] = STATE(1364), + [sym_compound_literal_expression] = STATE(1364), + [sym_parenthesized_expression] = STATE(1364), + [sym_char_literal] = STATE(1364), + [sym_null] = ACTIONS(3599), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3601), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3599), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1202] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1203] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), + [sym_concatenated_string] = STATE(1366), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1366), + [sym_math_expression] = STATE(1366), + [sym_cast_expression] = STATE(1366), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1366), + [sym_assignment_expression] = STATE(1366), + [sym_relational_expression] = STATE(1366), + [sym_shift_expression] = STATE(1366), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1366), + [sym_bitwise_expression] = STATE(1366), + [sym_equality_expression] = STATE(1366), + [sym_sizeof_expression] = STATE(1366), + [sym_compound_literal_expression] = STATE(1366), + [sym_parenthesized_expression] = STATE(1366), + [sym_char_literal] = STATE(1366), + [sym_null] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3605), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1500), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3603), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3603), + [anon_sym_RPAREN] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1204] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1205] = { - [anon_sym_LPAREN2] = ACTIONS(3611), - [anon_sym_DASH_DASH] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_COLON] = ACTIONS(3611), - [anon_sym_RBRACK] = ACTIONS(3611), - [anon_sym_PLUS_EQ] = ACTIONS(3611), - [anon_sym_CARET_EQ] = ACTIONS(3611), - [anon_sym_LT_LT_EQ] = ACTIONS(3611), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_GT] = ACTIONS(3613), - [anon_sym_EQ_EQ] = ACTIONS(3611), - [anon_sym_GT_EQ] = ACTIONS(3611), - [anon_sym_PIPE_PIPE] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3613), - [anon_sym_PLUS] = ACTIONS(3613), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_PLUS_PLUS] = ACTIONS(3611), - [anon_sym_RBRACE] = ACTIONS(3611), - [anon_sym_DASH_EQ] = ACTIONS(3611), - [anon_sym_SLASH_EQ] = ACTIONS(3611), - [anon_sym_GT_GT_EQ] = ACTIONS(3611), - [anon_sym_STAR_EQ] = ACTIONS(3611), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_LT_LT] = ACTIONS(3613), - [anon_sym_AMP_AMP] = ACTIONS(3611), - [anon_sym_PIPE_EQ] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3611), - [anon_sym_PIPE] = ACTIONS(3613), - [anon_sym_DASH] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(3611), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3611), - [anon_sym_AMP_EQ] = ACTIONS(3611), - [anon_sym_LT] = ACTIONS(3613), - [anon_sym_SEMI] = ACTIONS(3611), - [anon_sym_LT_EQ] = ACTIONS(3611), - [anon_sym_AMP] = ACTIONS(3613), - [anon_sym_CARET] = ACTIONS(3613), - [anon_sym_GT_GT] = ACTIONS(3613), - [anon_sym_DASH_GT] = ACTIONS(3611), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_DOT] = ACTIONS(3611), + [sym_concatenated_string] = STATE(1368), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1368), + [sym_math_expression] = STATE(1368), + [sym_cast_expression] = STATE(1368), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1368), + [sym_assignment_expression] = STATE(1368), + [sym_relational_expression] = STATE(1368), + [sym_shift_expression] = STATE(1368), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1368), + [sym_bitwise_expression] = STATE(1368), + [sym_equality_expression] = STATE(1368), + [sym_sizeof_expression] = STATE(1368), + [sym_compound_literal_expression] = STATE(1368), + [sym_parenthesized_expression] = STATE(1368), + [sym_char_literal] = STATE(1368), + [sym_null] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3611), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3609), + [sym_true] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1206] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3615), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(2464), + [aux_sym_preproc_if_token2] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2464), + [aux_sym_preproc_if_token1] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2464), + [aux_sym_preproc_elif_token1] = ACTIONS(2464), + [aux_sym_preproc_def_token1] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym___attribute__] = ACTIONS(2464), }, [1207] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3615), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1370), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1370), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1208] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(2477), + [aux_sym_preproc_if_token2] = ACTIONS(3617), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), }, [1209] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(1372), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1372), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1372), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1373), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1373), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(1372), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1372), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1372), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1372), + [sym_field_declaration] = STATE(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1210] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), - }, - [1211] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), - }, - [1212] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [anon_sym_unsigned] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_restrict] = ACTIONS(398), + [anon_sym_register] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(398), + [anon_sym_signed] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [sym_identifier] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(398), + [anon_sym_inline] = ACTIONS(398), + [anon_sym___attribute__] = ACTIONS(398), }, - [1213] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [1211] = { + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3621), + }, + [1212] = { + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(1376), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1376), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1376), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1377), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1377), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(1376), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1376), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1376), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1376), + [sym_field_declaration] = STATE(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + }, + [1213] = { + [sym_preproc_params] = STATE(1380), + [sym_preproc_arg] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3627), }, [1214] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [sym__declaration_specifiers] = STATE(984), + [sym_preproc_def] = STATE(1214), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(1214), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1214), + [sym_storage_class_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_struct_specifier] = STATE(172), + [sym_attribute_specifier] = STATE(175), + [sym_preproc_call] = STATE(1214), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(1214), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(1214), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1214), + [sym_field_declaration] = STATE(1214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3629), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1718), + [anon_sym_volatile] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3216), + [sym_preproc_directive] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3629), + [aux_sym_preproc_def_token1] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(1721), + [anon_sym_auto] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1747), + [anon_sym_inline] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1750), }, [1215] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1206), - [sym_logical_expression] = STATE(1206), - [sym_bitwise_expression] = STATE(1206), - [sym_cast_expression] = STATE(1206), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1206), - [sym_field_designator] = STATE(702), - [sym_char_literal] = STATE(1206), - [sym_assignment_expression] = STATE(1206), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1206), - [sym_math_expression] = STATE(1206), - [sym_call_expression] = STATE(691), - [aux_sym_initializer_pair_repeat1] = STATE(702), - [sym_initializer_pair] = STATE(1207), - [sym_subscript_designator] = STATE(702), - [sym_conditional_expression] = STATE(1206), - [sym_equality_expression] = STATE(1206), - [sym_relational_expression] = STATE(1206), - [sym_sizeof_expression] = STATE(1206), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1206), - [sym_initializer_list] = STATE(1207), - [sym_concatenated_string] = STATE(1206), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [sym_null] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3167), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsigned] = ACTIONS(1766), + [anon_sym_volatile] = ACTIONS(1766), + [anon_sym_short] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_restrict] = ACTIONS(1766), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1766), + [sym_preproc_directive] = ACTIONS(1766), + [anon_sym_signed] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1766), + [anon_sym_long] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [anon_sym__Atomic] = ACTIONS(1766), + [anon_sym_auto] = ACTIONS(1766), + [sym_primitive_type] = ACTIONS(1766), + [anon_sym_inline] = ACTIONS(1766), + [anon_sym___attribute__] = ACTIONS(1766), }, [1216] = { - [aux_sym_initializer_list_repeat1] = STATE(1216), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3621), - [anon_sym_RBRACE] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3641), }, [1217] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3624), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_field_declaration_repeat1] = STATE(1382), + [sym_bitfield_clause] = STATE(1383), + [sym_parameter_list] = STATE(717), + [anon_sym_LBRACK] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(3641), }, [1218] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_elif_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), }, [1219] = { - [sym__abstract_declarator] = STATE(720), - [sym_function_declarator] = STATE(661), - [sym_abstract_array_declarator] = STATE(720), - [sym_pointer_declarator] = STATE(661), - [sym_parameter_list] = STATE(190), - [sym_abstract_function_declarator] = STATE(720), - [sym__declarator] = STATE(661), - [sym_abstract_pointer_declarator] = STATE(720), - [sym_array_declarator] = STATE(661), - [sym_type_qualifier] = STATE(1360), - [aux_sym_type_definition_repeat1] = STATE(1360), - [anon_sym_LPAREN2] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(11), - [sym_identifier] = ACTIONS(1628), - [anon_sym__Atomic] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_const] = ACTIONS(11), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(2478), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_signed] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [aux_sym_preproc_elif_token1] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym_auto] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), }, [1220] = { - [sym_type_qualifier] = STATE(1220), - [aux_sym_type_definition_repeat1] = STATE(1220), - [anon_sym_LPAREN2] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1017), - [anon_sym__Atomic] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1019), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1385), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1385), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(3643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1221] = { - [anon_sym_LPAREN2] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3645), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3626), }, [1222] = { - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_default] = ACTIONS(3630), - [sym_identifier] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3628), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_long] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [anon_sym_auto] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3628), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1386), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1386), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [aux_sym_preproc_if_token2] = ACTIONS(3647), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1223] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), }, [1224] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3632), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3651), }, [1225] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1363), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_elif_token1] = ACTIONS(1471), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), }, [1226] = { - [sym_do_statement] = STATE(1364), - [sym_goto_statement] = STATE(1364), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1364), - [sym_switch_statement] = STATE(1364), - [sym_for_statement] = STATE(1364), - [sym_return_statement] = STATE(1364), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1364), - [sym_continue_statement] = STATE(1364), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1364), - [sym_labeled_statement] = STATE(1364), - [sym_expression_statement] = STATE(1364), - [sym_while_statement] = STATE(1364), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3653), + [sym_preproc_arg] = ACTIONS(3655), }, [1227] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1366), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3634), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym_auto] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), }, [1228] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1367), - [sym_logical_expression] = STATE(1367), - [sym_bitwise_expression] = STATE(1367), - [sym_cast_expression] = STATE(1367), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1367), - [sym_char_literal] = STATE(1367), - [sym_assignment_expression] = STATE(1367), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1367), - [sym_math_expression] = STATE(1367), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1367), - [sym_equality_expression] = STATE(1367), - [sym_relational_expression] = STATE(1367), - [sym_sizeof_expression] = STATE(1367), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(2498), + [aux_sym_preproc_if_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_signed] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [aux_sym_preproc_elif_token1] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym_auto] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), }, [1229] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_field_declaration_repeat1] = STATE(1010), + [sym_bitfield_clause] = STATE(1391), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(3661), }, [1230] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1370), - [sym_logical_expression] = STATE(1370), - [sym_bitwise_expression] = STATE(1370), - [sym_cast_expression] = STATE(1370), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1370), - [sym_char_literal] = STATE(1370), - [sym_assignment_expression] = STATE(1370), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1370), - [sym_math_expression] = STATE(1370), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1370), - [sym_equality_expression] = STATE(1370), - [sym_relational_expression] = STATE(1370), - [sym_sizeof_expression] = STATE(1370), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1370), - [sym_concatenated_string] = STATE(1370), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3661), }, [1231] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3663), + [anon_sym_union] = ACTIONS(3663), + [anon_sym_unsigned] = ACTIONS(3663), + [anon_sym_volatile] = ACTIONS(3663), + [anon_sym_short] = ACTIONS(3663), + [anon_sym_static] = ACTIONS(3663), + [anon_sym_restrict] = ACTIONS(3663), + [anon_sym_register] = ACTIONS(3663), + [anon_sym_extern] = ACTIONS(3663), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3663), + [sym_preproc_directive] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3663), + [anon_sym_long] = ACTIONS(3663), + [anon_sym_enum] = ACTIONS(3663), + [anon_sym_const] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3663), + [anon_sym_RBRACE] = ACTIONS(3665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3663), + [aux_sym_preproc_def_token1] = ACTIONS(3663), + [anon_sym__Atomic] = ACTIONS(3663), + [anon_sym_auto] = ACTIONS(3663), + [sym_primitive_type] = ACTIONS(3663), + [anon_sym_inline] = ACTIONS(3663), + [anon_sym___attribute__] = ACTIONS(3663), }, [1232] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1372), - [sym_logical_expression] = STATE(1372), - [sym_bitwise_expression] = STATE(1372), - [sym_cast_expression] = STATE(1372), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1372), - [sym_char_literal] = STATE(1372), - [sym_assignment_expression] = STATE(1372), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1372), - [sym_math_expression] = STATE(1372), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1372), - [sym_equality_expression] = STATE(1372), - [sym_relational_expression] = STATE(1372), - [sym_sizeof_expression] = STATE(1372), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1372), - [sym_concatenated_string] = STATE(1372), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3648), - [sym_false] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), }, [1233] = { - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_long] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [sym_true] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [aux_sym_preproc_if_token2] = ACTIONS(1894), - [sym_preproc_directive] = ACTIONS(1894), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_include_token1] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_null] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(3667), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3667), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_SEMI] = ACTIONS(3667), }, [1234] = { - [aux_sym_preproc_if_token2] = ACTIONS(3654), + [sym_concatenated_string] = STATE(74), + [sym_pointer_expression] = STATE(74), + [sym_logical_expression] = STATE(74), + [sym_math_expression] = STATE(74), + [sym_cast_expression] = STATE(74), + [sym_field_expression] = STATE(74), + [sym_conditional_expression] = STATE(74), + [sym_assignment_expression] = STATE(74), + [sym_relational_expression] = STATE(74), + [sym_shift_expression] = STATE(74), + [sym_subscript_expression] = STATE(74), + [sym_call_expression] = STATE(74), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(74), + [sym_bitwise_expression] = STATE(74), + [sym_equality_expression] = STATE(74), + [sym_sizeof_expression] = STATE(74), + [sym_compound_literal_expression] = STATE(74), + [sym_parenthesized_expression] = STATE(74), + [sym_char_literal] = STATE(74), + [sym_null] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(139), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(135), + [sym_identifier] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [1235] = { - [sym_parameter_list] = STATE(502), - [aux_sym_type_definition_repeat2] = STATE(1375), - [anon_sym_LPAREN2] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3656), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [1236] = { - [anon_sym_LPAREN2] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_long] = ACTIONS(1981), - [anon_sym__Atomic] = ACTIONS(1981), - [sym_primitive_type] = ACTIONS(1981), - [sym_true] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [aux_sym_preproc_if_token2] = ACTIONS(1981), - [sym_preproc_directive] = ACTIONS(1981), - [aux_sym_preproc_if_token1] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_restrict] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_typedef] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [sym_number_literal] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1981), - [sym_false] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1981), - [aux_sym_preproc_include_token1] = ACTIONS(1981), - [anon_sym_auto] = ACTIONS(1981), - [anon_sym_volatile] = ACTIONS(1981), - [anon_sym_inline] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_sizeof] = ACTIONS(1981), - [anon_sym_union] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_struct] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym_null] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_goto] = ACTIONS(1981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3671), + [anon_sym_union] = ACTIONS(3671), + [anon_sym_unsigned] = ACTIONS(3671), + [anon_sym_volatile] = ACTIONS(3671), + [anon_sym_short] = ACTIONS(3671), + [anon_sym_static] = ACTIONS(3671), + [anon_sym_restrict] = ACTIONS(3671), + [anon_sym_register] = ACTIONS(3671), + [anon_sym_extern] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(3671), + [sym_preproc_directive] = ACTIONS(3671), + [anon_sym_signed] = ACTIONS(3671), + [aux_sym_preproc_if_token1] = ACTIONS(3671), + [anon_sym_long] = ACTIONS(3671), + [anon_sym_enum] = ACTIONS(3671), + [anon_sym_const] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3671), + [aux_sym_preproc_def_token1] = ACTIONS(3671), + [anon_sym__Atomic] = ACTIONS(3671), + [anon_sym_auto] = ACTIONS(3671), + [sym_primitive_type] = ACTIONS(3671), + [anon_sym_inline] = ACTIONS(3671), + [anon_sym___attribute__] = ACTIONS(3671), }, [1237] = { - [aux_sym_type_definition_repeat2] = STATE(806), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3656), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1238] = { - [sym_do_statement] = STATE(1011), - [sym_goto_statement] = STATE(1011), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1011), - [sym_switch_statement] = STATE(1011), - [sym_for_statement] = STATE(1011), - [sym_return_statement] = STATE(1011), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1011), - [sym_continue_statement] = STATE(1011), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1011), - [sym_labeled_statement] = STATE(1011), - [sym_expression_statement] = STATE(1011), - [sym_while_statement] = STATE(1011), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_concatenated_string] = STATE(1394), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1394), + [sym_math_expression] = STATE(1394), + [sym_cast_expression] = STATE(1394), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1394), + [sym_assignment_expression] = STATE(1394), + [sym_relational_expression] = STATE(1394), + [sym_shift_expression] = STATE(1394), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1394), + [sym_bitwise_expression] = STATE(1394), + [sym_equality_expression] = STATE(1394), + [sym_sizeof_expression] = STATE(1394), + [sym_compound_literal_expression] = STATE(1394), + [sym_parenthesized_expression] = STATE(1394), + [sym_char_literal] = STATE(1394), + [sym_null] = ACTIONS(3675), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3677), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3675), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3679), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1239] = { - [sym__expression] = STATE(1377), - [sym_logical_expression] = STATE(1377), - [sym_bitwise_expression] = STATE(1377), - [sym_cast_expression] = STATE(1377), - [sym_declaration] = STATE(1376), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1377), - [sym_char_literal] = STATE(1377), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1377), - [sym_equality_expression] = STATE(1377), - [sym_relational_expression] = STATE(1377), - [sym_sizeof_expression] = STATE(1377), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1377), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1377), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1377), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1377), - [sym_math_expression] = STATE(1377), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1240] = { - [sym_do_statement] = STATE(1378), - [sym_goto_statement] = STATE(1378), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1378), - [sym_switch_statement] = STATE(1378), - [sym_for_statement] = STATE(1378), - [sym_return_statement] = STATE(1378), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1378), - [sym_continue_statement] = STATE(1378), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1378), - [sym_labeled_statement] = STATE(1378), - [sym_expression_statement] = STATE(1378), - [sym_while_statement] = STATE(1378), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_concatenated_string] = STATE(1396), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1396), + [sym_math_expression] = STATE(1396), + [sym_cast_expression] = STATE(1396), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1396), + [sym_relational_expression] = STATE(1396), + [sym_shift_expression] = STATE(1396), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1396), + [sym_bitwise_expression] = STATE(1396), + [sym_equality_expression] = STATE(1396), + [sym_sizeof_expression] = STATE(1396), + [sym_compound_literal_expression] = STATE(1396), + [sym_parenthesized_expression] = STATE(1396), + [sym_char_literal] = STATE(1396), + [sym_null] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3685), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3683), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3681), + [sym_true] = ACTIONS(3683), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1241] = { - [sym_do_statement] = STATE(1025), - [sym_goto_statement] = STATE(1025), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1025), - [sym_switch_statement] = STATE(1025), - [sym_for_statement] = STATE(1025), - [sym_return_statement] = STATE(1025), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1025), - [sym_continue_statement] = STATE(1025), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1025), - [sym_labeled_statement] = STATE(1025), - [sym_expression_statement] = STATE(1025), - [sym_while_statement] = STATE(1025), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1242] = { - [sym_do_statement] = STATE(1379), - [sym_goto_statement] = STATE(1379), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1379), - [sym_switch_statement] = STATE(1379), - [sym_for_statement] = STATE(1379), - [sym_return_statement] = STATE(1379), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1379), - [sym_continue_statement] = STATE(1379), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1379), - [sym_labeled_statement] = STATE(1379), - [sym_expression_statement] = STATE(1379), - [sym_while_statement] = STATE(1379), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(3687), + [sym_comment] = ACTIONS(3), }, [1243] = { - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_long] = ACTIONS(2023), - [anon_sym__Atomic] = ACTIONS(2023), - [sym_primitive_type] = ACTIONS(2023), - [sym_true] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [aux_sym_preproc_if_token2] = ACTIONS(2023), - [sym_preproc_directive] = ACTIONS(2023), - [aux_sym_preproc_if_token1] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_restrict] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_typedef] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_switch] = ACTIONS(2023), - [anon_sym_signed] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [sym_number_literal] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2023), - [sym_false] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2023), - [aux_sym_preproc_include_token1] = ACTIONS(2023), - [anon_sym_auto] = ACTIONS(2023), - [anon_sym_volatile] = ACTIONS(2023), - [anon_sym_inline] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_sizeof] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_unsigned] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_short] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym_null] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_for_statement_repeat1] = STATE(1398), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3687), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1244] = { - [sym_do_statement] = STATE(820), - [sym_goto_statement] = STATE(820), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(820), - [sym_switch_statement] = STATE(820), - [sym_for_statement] = STATE(820), - [sym_return_statement] = STATE(820), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [aux_sym_switch_body_repeat1] = STATE(820), - [sym_case_statement] = STATE(820), - [sym_break_statement] = STATE(820), - [sym_continue_statement] = STATE(820), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(820), - [sym_labeled_statement] = STATE(820), - [sym_expression_statement] = STATE(820), - [sym_while_statement] = STATE(820), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_default] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1262), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1399), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1399), + [sym_math_expression] = STATE(1399), + [sym_cast_expression] = STATE(1399), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1399), + [sym_assignment_expression] = STATE(1399), + [sym_relational_expression] = STATE(1399), + [sym_shift_expression] = STATE(1399), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1399), + [sym_bitwise_expression] = STATE(1399), + [sym_equality_expression] = STATE(1399), + [sym_sizeof_expression] = STATE(1399), + [sym_compound_literal_expression] = STATE(1399), + [sym_parenthesized_expression] = STATE(1399), + [sym_char_literal] = STATE(1399), + [sym_null] = ACTIONS(3689), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3689), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3689), + [anon_sym_RPAREN] = ACTIONS(3687), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1245] = { - [anon_sym_LPAREN2] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_long] = ACTIONS(2097), - [anon_sym__Atomic] = ACTIONS(2097), - [sym_primitive_type] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [sym_preproc_directive] = ACTIONS(2097), - [aux_sym_preproc_if_token1] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_restrict] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_typedef] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_signed] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [sym_number_literal] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2097), - [aux_sym_preproc_include_token1] = ACTIONS(2097), - [anon_sym_auto] = ACTIONS(2097), - [anon_sym_volatile] = ACTIONS(2097), - [anon_sym_inline] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_sizeof] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_unsigned] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_short] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym_null] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1246] = { - [aux_sym_preproc_if_token2] = ACTIONS(3666), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3693), }, [1247] = { - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_null] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), + [sym_concatenated_string] = STATE(1401), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1401), + [sym_math_expression] = STATE(1401), + [sym_cast_expression] = STATE(1401), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1401), + [sym_assignment_expression] = STATE(1401), + [sym_relational_expression] = STATE(1401), + [sym_shift_expression] = STATE(1401), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1401), + [sym_comma_expression] = STATE(1402), + [sym_bitwise_expression] = STATE(1401), + [sym_equality_expression] = STATE(1401), + [sym_sizeof_expression] = STATE(1401), + [sym_compound_literal_expression] = STATE(1401), + [sym_parenthesized_expression] = STATE(1401), + [sym_char_literal] = STATE(1401), + [sym_null] = ACTIONS(3695), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3697), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3695), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3695), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1248] = { - [anon_sym_LPAREN2] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_long] = ACTIONS(2103), - [anon_sym__Atomic] = ACTIONS(2103), - [sym_primitive_type] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2103), - [sym_preproc_directive] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_restrict] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_typedef] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_switch] = ACTIONS(2103), - [anon_sym_signed] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [sym_number_literal] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2103), - [aux_sym_preproc_include_token1] = ACTIONS(2103), - [anon_sym_auto] = ACTIONS(2103), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym_inline] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_sizeof] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_unsigned] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_short] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym_null] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_goto] = ACTIONS(2103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_register] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym_null] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_goto] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1798), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_LPAREN2] = ACTIONS(1800), + [anon_sym_typedef] = ACTIONS(1798), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1798), + [anon_sym__Atomic] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [sym_true] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1800), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [sym_false] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym___attribute__] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), }, [1249] = { - [sym_do_statement] = STATE(331), - [sym_preproc_def] = STATE(331), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_preproc_function_def] = STATE(331), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_function_definition] = STATE(331), - [sym_char_literal] = STATE(40), - [sym_declaration] = STATE(331), - [sym_goto_statement] = STATE(331), - [sym__empty_declaration] = STATE(331), - [sym_storage_class_specifier] = STATE(38), - [sym_struct_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [sym_type_qualifier] = STATE(38), - [sym_if_statement] = STATE(331), - [sym_switch_statement] = STATE(331), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(331), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(43), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(37), - [sym_preproc_call] = STATE(331), - [sym__type_specifier] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(38), - [sym_sized_type_specifier] = STATE(37), - [sym_type_definition] = STATE(331), - [aux_sym_translation_unit_repeat1] = STATE(331), - [sym_break_statement] = STATE(331), - [sym_preproc_include] = STATE(331), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_preproc_if] = STATE(331), - [sym_preproc_ifdef] = STATE(331), - [sym_linkage_specification] = STATE(331), - [sym_continue_statement] = STATE(331), - [sym_compound_statement] = STATE(331), - [sym_enum_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_labeled_statement] = STATE(331), - [sym_expression_statement] = STATE(331), - [sym_while_statement] = STATE(331), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(13), - [sym_true] = ACTIONS(15), - [anon_sym_long] = ACTIONS(17), - [anon_sym_for] = ACTIONS(261), - [sym_preproc_directive] = ACTIONS(21), - [aux_sym_preproc_if_token1] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_continue] = ACTIONS(49), - [aux_sym_preproc_ifdef_token1] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(3668), - [aux_sym_preproc_include_token1] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(15), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_sizeof] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_null] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1916), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym__Atomic] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [sym_true] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [sym_number_literal] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), }, [1250] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1383), - [sym_logical_expression] = STATE(1383), - [sym_bitwise_expression] = STATE(1383), - [sym_cast_expression] = STATE(1383), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1383), - [sym_char_literal] = STATE(1383), - [sym_assignment_expression] = STATE(1383), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1383), - [sym_math_expression] = STATE(1383), - [sym_call_expression] = STATE(54), - [sym_comma_expression] = STATE(1384), - [sym_conditional_expression] = STATE(1383), - [sym_equality_expression] = STATE(1383), - [sym_relational_expression] = STATE(1383), - [sym_sizeof_expression] = STATE(1383), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1383), - [sym_concatenated_string] = STATE(1383), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(107), + [aux_sym_preproc_if_token2] = ACTIONS(3699), + [sym_comment] = ACTIONS(3), }, [1251] = { - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [anon_sym_long] = ACTIONS(2218), - [anon_sym__Atomic] = ACTIONS(2218), - [sym_primitive_type] = ACTIONS(2218), - [sym_true] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [aux_sym_preproc_if_token2] = ACTIONS(2218), - [sym_preproc_directive] = ACTIONS(2218), - [aux_sym_preproc_if_token1] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_restrict] = ACTIONS(2218), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_typedef] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_switch] = ACTIONS(2218), - [anon_sym_signed] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [sym_number_literal] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2218), - [sym_false] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), - [aux_sym_preproc_include_token1] = ACTIONS(2218), - [anon_sym_auto] = ACTIONS(2218), - [anon_sym_volatile] = ACTIONS(2218), - [anon_sym_inline] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_sizeof] = ACTIONS(2218), - [anon_sym_union] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_unsigned] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2218), - [anon_sym_short] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2216), - [sym_null] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_goto] = ACTIONS(2218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2216), + [aux_sym_type_definition_repeat2] = STATE(1405), + [sym_parameter_list] = STATE(546), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3701), }, [1252] = { - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [sym_true] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [aux_sym_preproc_if_token2] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2220), - [sym_number_literal] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2222), - [sym_false] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [aux_sym_preproc_include_token1] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_sizeof] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_unsigned] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym_null] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_goto] = ACTIONS(2222), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2220), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2122), + [anon_sym_unsigned] = ACTIONS(2122), + [anon_sym_volatile] = ACTIONS(2122), + [anon_sym_short] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym_null] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_goto] = ACTIONS(2122), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2122), + [sym_preproc_directive] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_LPAREN2] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2122), + [sym_primitive_type] = ACTIONS(2122), + [sym_true] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_restrict] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_long] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [sym_false] = ACTIONS(2122), + [anon_sym_auto] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym___attribute__] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), }, [1253] = { - [anon_sym_LPAREN2] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [aux_sym_preproc_if_token2] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_typedef] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [aux_sym_preproc_include_token1] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_sizeof] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_unsigned] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym_null] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_goto] = ACTIONS(2234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2232), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2232), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3701), }, [1254] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3674), + [sym_concatenated_string] = STATE(1407), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1407), + [sym_math_expression] = STATE(1407), + [sym_cast_expression] = STATE(1407), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1407), + [sym_assignment_expression] = STATE(1407), + [sym_relational_expression] = STATE(1407), + [sym_shift_expression] = STATE(1407), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1407), + [sym_bitwise_expression] = STATE(1407), + [sym_equality_expression] = STATE(1407), + [sym_sizeof_expression] = STATE(1407), + [sym_compound_literal_expression] = STATE(1407), + [sym_parenthesized_expression] = STATE(1407), + [sym_char_literal] = STATE(1407), + [sym_null] = ACTIONS(3703), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3703), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3707), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1255] = { - [anon_sym_LPAREN2] = ACTIONS(2392), - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_long] = ACTIONS(2394), - [anon_sym__Atomic] = ACTIONS(2394), - [sym_primitive_type] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [aux_sym_preproc_if_token2] = ACTIONS(2394), - [sym_preproc_directive] = ACTIONS(2394), - [aux_sym_preproc_if_token1] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_restrict] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2392), - [anon_sym_typedef] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_signed] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2394), - [aux_sym_preproc_include_token1] = ACTIONS(2394), - [anon_sym_auto] = ACTIONS(2394), - [anon_sym_volatile] = ACTIONS(2394), - [anon_sym_inline] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_sizeof] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2392), - [anon_sym_unsigned] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_short] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym_null] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_goto] = ACTIONS(2394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2392), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1256] = { - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [aux_sym_preproc_else_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2683), - [aux_sym_preproc_elif_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), + [sym_concatenated_string] = STATE(1409), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1409), + [sym_math_expression] = STATE(1409), + [sym_cast_expression] = STATE(1409), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1409), + [sym_assignment_expression] = STATE(1409), + [sym_relational_expression] = STATE(1409), + [sym_shift_expression] = STATE(1409), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1409), + [sym_bitwise_expression] = STATE(1409), + [sym_equality_expression] = STATE(1409), + [sym_sizeof_expression] = STATE(1409), + [sym_compound_literal_expression] = STATE(1409), + [sym_parenthesized_expression] = STATE(1409), + [sym_char_literal] = STATE(1409), + [sym_null] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3713), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3711), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3709), + [sym_true] = ACTIONS(3711), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1257] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [anon_sym_auto] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_null] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_register] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_sizeof] = ACTIONS(2155), + [anon_sym_unsigned] = ACTIONS(2155), + [anon_sym_volatile] = ACTIONS(2155), + [anon_sym_short] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym_null] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_goto] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2155), + [sym_preproc_directive] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2153), + [aux_sym_preproc_if_token1] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_LPAREN2] = ACTIONS(2153), + [anon_sym_typedef] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym__Atomic] = ACTIONS(2155), + [sym_primitive_type] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2155), + [aux_sym_preproc_include_token1] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_restrict] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_switch] = ACTIONS(2155), + [anon_sym_signed] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_long] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [sym_number_literal] = ACTIONS(2153), + [aux_sym_preproc_def_token1] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [anon_sym_auto] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_inline] = ACTIONS(2155), + [anon_sym___attribute__] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), }, [1258] = { - [aux_sym_type_definition_repeat2] = STATE(806), + [aux_sym_preproc_if_token2] = ACTIONS(3715), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3676), }, [1259] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1388), - [sym_logical_expression] = STATE(1388), - [sym_bitwise_expression] = STATE(1388), - [sym_cast_expression] = STATE(1388), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1388), - [sym_char_literal] = STATE(1388), - [sym_assignment_expression] = STATE(1388), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1388), - [sym_math_expression] = STATE(1388), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1388), - [sym_equality_expression] = STATE(1388), - [sym_relational_expression] = STATE(1388), - [sym_sizeof_expression] = STATE(1388), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1388), - [sym_concatenated_string] = STATE(1388), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3682), - [sym_false] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1029), + [anon_sym_unsigned] = ACTIONS(1029), + [anon_sym_volatile] = ACTIONS(1029), + [anon_sym_short] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1031), + [sym_null] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1029), + [anon_sym_do] = ACTIONS(1029), + [anon_sym_goto] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1029), + [sym_preproc_directive] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(1031), + [anon_sym_typedef] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1029), + [sym_primitive_type] = ACTIONS(1029), + [sym_true] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1029), + [aux_sym_preproc_include_token1] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_restrict] = ACTIONS(1029), + [anon_sym_register] = ACTIONS(1029), + [anon_sym_extern] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_switch] = ACTIONS(1029), + [anon_sym_signed] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_long] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_auto] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1029), + [anon_sym___attribute__] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), }, [1260] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_sizeof] = ACTIONS(2161), + [anon_sym_unsigned] = ACTIONS(2161), + [anon_sym_volatile] = ACTIONS(2161), + [anon_sym_short] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2159), + [sym_null] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_goto] = ACTIONS(2161), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2159), + [aux_sym_preproc_if_token1] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_LPAREN2] = ACTIONS(2159), + [anon_sym_typedef] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym__Atomic] = ACTIONS(2161), + [sym_primitive_type] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), + [aux_sym_preproc_include_token1] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_restrict] = ACTIONS(2161), + [anon_sym_register] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_signed] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_long] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [sym_number_literal] = ACTIONS(2159), + [aux_sym_preproc_def_token1] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [anon_sym_auto] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_inline] = ACTIONS(2161), + [anon_sym___attribute__] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), }, [1261] = { - [anon_sym_DASH_DASH] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [aux_sym_preproc_elif_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [aux_sym_preproc_else_token1] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(3686), - [sym_null] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), + [sym_continue_statement] = STATE(166), + [sym_preproc_function_def] = STATE(166), + [sym_pointer_expression] = STATE(35), + [sym_math_expression] = STATE(42), + [sym_declaration] = STATE(166), + [sym_storage_class_specifier] = STATE(40), + [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(44), + [sym_if_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_comma_expression] = STATE(37), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(166), + [sym_sizeof_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_macro_type_specifier] = STATE(44), + [sym_type_qualifier] = STATE(40), + [sym_union_specifier] = STATE(44), + [sym_switch_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_preproc_include] = STATE(166), + [sym_conditional_expression] = STATE(42), + [sym_preproc_ifdef] = STATE(166), + [sym_relational_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_attribute_specifier] = STATE(40), + [sym_string_literal] = STATE(38), + [aux_sym_translation_unit_repeat1] = STATE(166), + [aux_sym__declaration_specifiers_repeat1] = STATE(40), + [sym_enum_specifier] = STATE(44), + [sym_labeled_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_preproc_def] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym_logical_expression] = STATE(42), + [sym_function_definition] = STATE(166), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym__expression] = STATE(42), + [sym_preproc_call] = STATE(166), + [sym_bitwise_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(43), + [sym_compound_literal_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym__empty_declaration] = STATE(166), + [sym__type_specifier] = STATE(44), + [sym_break_statement] = STATE(166), + [sym_preproc_if] = STATE(166), + [sym_assignment_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_linkage_specification] = STATE(166), + [sym_call_expression] = STATE(35), + [sym_sized_type_specifier] = STATE(44), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(17), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_short] = ACTIONS(15), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(33), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(41), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [aux_sym_preproc_ifdef_token1] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(53), + [sym_number_literal] = ACTIONS(55), + [anon_sym_if] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [aux_sym_preproc_ifdef_token2] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [aux_sym_preproc_def_token1] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(15), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(81), }, [1262] = { - [anon_sym_DASH_DASH] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym__Atomic] = ACTIONS(2732), - [aux_sym_preproc_if_token2] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_signed] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_unsigned] = ACTIONS(2732), - [anon_sym_short] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), - [aux_sym_preproc_elif_token1] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_primitive_type] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [aux_sym_preproc_else_token1] = ACTIONS(2732), - [sym_preproc_directive] = ACTIONS(2732), - [aux_sym_preproc_if_token1] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [aux_sym_preproc_include_token1] = ACTIONS(2732), - [anon_sym_auto] = ACTIONS(2732), - [anon_sym_inline] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [sym_null] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_goto] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2732), - [anon_sym_register] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), + [sym_while_statement] = STATE(1412), + [sym_continue_statement] = STATE(1412), + [sym_goto_statement] = STATE(1412), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1412), + [sym_expression_statement] = STATE(1412), + [sym_if_statement] = STATE(1412), + [sym_do_statement] = STATE(1412), + [sym_for_statement] = STATE(1412), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1412), + [sym_return_statement] = STATE(1412), + [sym_break_statement] = STATE(1412), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1412), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1263] = { - [anon_sym_DASH_DASH] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym__Atomic] = ACTIONS(2764), - [aux_sym_preproc_if_token2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_unsigned] = ACTIONS(2764), - [anon_sym_short] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), - [aux_sym_preproc_elif_token1] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_primitive_type] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [aux_sym_preproc_else_token1] = ACTIONS(2764), - [sym_preproc_directive] = ACTIONS(2764), - [aux_sym_preproc_if_token1] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [aux_sym_preproc_include_token1] = ACTIONS(2764), - [anon_sym_auto] = ACTIONS(2764), - [anon_sym_inline] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2764), - [sym_null] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2764), - [anon_sym_register] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), + [sym_while_statement] = STATE(1049), + [sym_continue_statement] = STATE(1049), + [sym_goto_statement] = STATE(1049), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1049), + [sym_expression_statement] = STATE(1049), + [sym_if_statement] = STATE(1049), + [sym_do_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1049), + [sym_return_statement] = STATE(1049), + [sym_break_statement] = STATE(1049), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1049), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1264] = { - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [aux_sym_preproc_else_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token2] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [aux_sym_preproc_include_token1] = ACTIONS(2886), - [anon_sym_auto] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2884), - [sym_null] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2884), - [aux_sym_preproc_elif_token1] = ACTIONS(2886), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), + [sym_while_statement] = STATE(1051), + [sym_continue_statement] = STATE(1051), + [sym_goto_statement] = STATE(1051), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1051), + [sym_expression_statement] = STATE(1051), + [sym_if_statement] = STATE(1051), + [sym_do_statement] = STATE(1051), + [sym_for_statement] = STATE(1051), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1051), + [sym_return_statement] = STATE(1051), + [sym_break_statement] = STATE(1051), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1051), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1265] = { - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [aux_sym_preproc_else_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token2] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [aux_sym_preproc_include_token1] = ACTIONS(2890), - [anon_sym_auto] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2888), - [sym_null] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2888), - [aux_sym_preproc_elif_token1] = ACTIONS(2890), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1414), + [sym_math_expression] = STATE(1414), + [sym_cast_expression] = STATE(1414), + [sym_declaration] = STATE(1413), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1414), + [sym_bitwise_expression] = STATE(1414), + [sym_equality_expression] = STATE(1414), + [sym_sizeof_expression] = STATE(1414), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1414), + [sym_parenthesized_expression] = STATE(1414), + [sym_concatenated_string] = STATE(1414), + [sym_char_literal] = STATE(1414), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1414), + [sym_assignment_expression] = STATE(1414), + [sym_relational_expression] = STATE(1414), + [sym_shift_expression] = STATE(1414), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(3719), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(3719), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(3721), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(3719), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(3723), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [1266] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1415), + [sym_continue_statement] = STATE(1415), + [sym_goto_statement] = STATE(1415), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1415), + [sym_expression_statement] = STATE(1415), + [sym_if_statement] = STATE(1415), + [sym_do_statement] = STATE(1415), + [sym_for_statement] = STATE(1415), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1415), + [sym_return_statement] = STATE(1415), + [sym_break_statement] = STATE(1415), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1415), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1267] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2175), + [anon_sym_unsigned] = ACTIONS(2175), + [anon_sym_volatile] = ACTIONS(2175), + [anon_sym_short] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym_null] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2175), + [sym_preproc_directive] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [aux_sym_preproc_if_token1] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN2] = ACTIONS(2177), + [anon_sym_typedef] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2175), + [anon_sym__Atomic] = ACTIONS(2175), + [sym_primitive_type] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2175), + [aux_sym_preproc_include_token1] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_restrict] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_long] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2177), + [sym_number_literal] = ACTIONS(2177), + [aux_sym_preproc_def_token1] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [anon_sym_auto] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_inline] = ACTIONS(2175), + [anon_sym___attribute__] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), }, [1268] = { - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [sym_true] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [aux_sym_preproc_else_token1] = ACTIONS(2988), - [aux_sym_preproc_if_token2] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_typedef] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_switch] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_PLUS_PLUS] = ACTIONS(2986), - [sym_number_literal] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2988), - [sym_false] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [aux_sym_preproc_include_token1] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_sizeof] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_unsigned] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym_null] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_goto] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [aux_sym_preproc_elif_token1] = ACTIONS(2988), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), + [sym_while_statement] = STATE(877), + [sym_continue_statement] = STATE(877), + [sym_goto_statement] = STATE(877), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(877), + [sym_expression_statement] = STATE(877), + [sym_if_statement] = STATE(877), + [sym_do_statement] = STATE(877), + [sym_for_statement] = STATE(877), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(877), + [sym_return_statement] = STATE(877), + [sym_break_statement] = STATE(877), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [aux_sym_switch_body_repeat1] = STATE(877), + [sym_labeled_statement] = STATE(877), + [sym_case_statement] = STATE(877), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_case] = ACTIONS(1365), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_default] = ACTIONS(1369), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1269] = { - [anon_sym_LPAREN2] = ACTIONS(3690), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_RPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [sym_null] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_goto] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2257), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2255), + [anon_sym_typedef] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym__Atomic] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [aux_sym_preproc_include_token1] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [sym_number_literal] = ACTIONS(2255), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym___attribute__] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), }, [1270] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_sizeof] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2267), + [sym_null] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2269), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2267), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN2] = ACTIONS(2267), + [anon_sym_typedef] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym__Atomic] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [aux_sym_preproc_include_token1] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [sym_number_literal] = ACTIONS(2267), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym___attribute__] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), }, [1271] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1393), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(3727), }, [1272] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1394), - [sym_logical_expression] = STATE(1394), - [sym_bitwise_expression] = STATE(1394), - [sym_cast_expression] = STATE(1394), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1394), - [sym_char_literal] = STATE(1394), - [sym_assignment_expression] = STATE(1394), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1394), - [sym_math_expression] = STATE(1394), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1394), - [sym_equality_expression] = STATE(1394), - [sym_relational_expression] = STATE(1394), - [sym_sizeof_expression] = STATE(1394), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1394), - [sym_concatenated_string] = STATE(1394), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_sizeof] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_null] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_goto] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2419), + [sym_preproc_directive] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [aux_sym_preproc_if_token1] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym__Atomic] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [sym_true] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2419), + [aux_sym_preproc_include_token1] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_switch] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2421), + [sym_number_literal] = ACTIONS(2421), + [aux_sym_preproc_def_token1] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [anon_sym_auto] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym___attribute__] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), }, [1273] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_null] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2691), + [aux_sym_preproc_if_token2] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [sym_number_literal] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [aux_sym_preproc_elif_token1] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [aux_sym_preproc_else_token1] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2689), + [sym_true] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [anon_sym_auto] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2691), }, [1274] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [aux_sym_preproc_elif_token1] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [aux_sym_preproc_else_token1] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2824), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), }, [1275] = { - [sym__expression] = STATE(1398), - [sym_logical_expression] = STATE(1398), - [sym_bitwise_expression] = STATE(1398), - [sym_cast_expression] = STATE(1398), - [sym_declaration] = STATE(1397), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1398), - [sym_char_literal] = STATE(1398), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1398), - [sym_equality_expression] = STATE(1398), - [sym_relational_expression] = STATE(1398), - [sym_sizeof_expression] = STATE(1398), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1398), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1398), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1398), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1398), - [sym_math_expression] = STATE(1398), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(3702), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(3702), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3729), }, [1276] = { - [sym_do_statement] = STATE(1403), - [sym_goto_statement] = STATE(1403), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1403), - [sym_switch_statement] = STATE(1403), - [sym_for_statement] = STATE(1403), - [sym_return_statement] = STATE(1403), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1403), - [sym_continue_statement] = STATE(1403), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1403), - [sym_labeled_statement] = STATE(1403), - [sym_expression_statement] = STATE(1403), - [sym_while_statement] = STATE(1403), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(1419), + [sym_continue_statement] = STATE(1419), + [sym_goto_statement] = STATE(1419), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1419), + [sym_expression_statement] = STATE(1419), + [sym_if_statement] = STATE(1419), + [sym_do_statement] = STATE(1419), + [sym_for_statement] = STATE(1419), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1419), + [sym_return_statement] = STATE(1419), + [sym_break_statement] = STATE(1419), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1419), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1277] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1421), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1278] = { - [sym_do_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(1278), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(201), - [sym_type_definition] = STATE(1278), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [aux_sym_case_statement_repeat1] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1278), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_labeled_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [anon_sym_LPAREN2] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_default] = ACTIONS(3722), - [anon_sym_long] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3727), - [sym_primitive_type] = ACTIONS(3730), - [sym_true] = ACTIONS(3733), - [sym_identifier] = ACTIONS(3736), - [anon_sym_for] = ACTIONS(3739), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3745), - [anon_sym_static] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3727), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_typedef] = ACTIONS(3753), - [anon_sym_STAR] = ACTIONS(3756), - [anon_sym_if] = ACTIONS(3759), - [anon_sym_while] = ACTIONS(3762), - [anon_sym_switch] = ACTIONS(3765), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3768), - [anon_sym_PLUS] = ACTIONS(3771), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [sym_number_literal] = ACTIONS(3774), - [anon_sym_return] = ACTIONS(3777), - [sym_false] = ACTIONS(3733), - [anon_sym_continue] = ACTIONS(3780), - [anon_sym_auto] = ACTIONS(3748), - [anon_sym_volatile] = ACTIONS(3727), - [anon_sym_inline] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_sizeof] = ACTIONS(3783), - [anon_sym_union] = ACTIONS(3786), - [anon_sym_case] = ACTIONS(3722), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3789), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_SQUOTE] = ACTIONS(3792), - [anon_sym_DQUOTE] = ACTIONS(3795), - [anon_sym_break] = ACTIONS(3798), - [anon_sym_do] = ACTIONS(3801), - [anon_sym_goto] = ACTIONS(3804), + [sym_concatenated_string] = STATE(1422), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1422), + [sym_math_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1422), + [sym_relational_expression] = STATE(1422), + [sym_shift_expression] = STATE(1422), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1422), + [sym_bitwise_expression] = STATE(1422), + [sym_equality_expression] = STATE(1422), + [sym_sizeof_expression] = STATE(1422), + [sym_compound_literal_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_char_literal] = STATE(1422), [sym_null] = ACTIONS(3733), - [anon_sym_SEMI] = ACTIONS(3807), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3756), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3727), - [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3735), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3733), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1279] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1405), - [sym_logical_expression] = STATE(1405), - [sym_bitwise_expression] = STATE(1405), - [sym_cast_expression] = STATE(1405), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1405), - [sym_char_literal] = STATE(1405), - [sym_assignment_expression] = STATE(1405), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1405), - [sym_math_expression] = STATE(1405), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1405), - [sym_equality_expression] = STATE(1405), - [sym_relational_expression] = STATE(1405), - [sym_sizeof_expression] = STATE(1405), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1405), - [sym_concatenated_string] = STATE(1405), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3813), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3815), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3813), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3817), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3737), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1280] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3819), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_null] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2859), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [sym_number_literal] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [aux_sym_preproc_elif_token1] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [aux_sym_preproc_else_token1] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2857), + [sym_true] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [anon_sym_auto] = ACTIONS(2859), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), }, [1281] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1407), - [sym_logical_expression] = STATE(1407), - [sym_bitwise_expression] = STATE(1407), - [sym_cast_expression] = STATE(1407), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1407), - [sym_char_literal] = STATE(1407), - [sym_assignment_expression] = STATE(1407), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1407), - [sym_math_expression] = STATE(1407), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1407), - [sym_equality_expression] = STATE(1407), - [sym_relational_expression] = STATE(1407), - [sym_sizeof_expression] = STATE(1407), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1407), - [sym_concatenated_string] = STATE(1407), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3821), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3821), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3819), - [sym_false] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(207), + [sym_null] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [aux_sym_preproc_elif_token1] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [aux_sym_preproc_else_token1] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2861), + [sym_true] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [anon_sym_auto] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), }, [1282] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [aux_sym_preproc_elif_token1] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [aux_sym_preproc_else_token1] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(3739), + [sym_true] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [1283] = { - [sym__expression] = STATE(1409), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1409), - [sym_cast_expression] = STATE(1409), - [sym_declaration] = STATE(1408), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1409), - [sym_char_literal] = STATE(1409), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1409), - [sym_equality_expression] = STATE(1409), - [sym_relational_expression] = STATE(1409), - [sym_sizeof_expression] = STATE(1409), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1409), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1409), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1409), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1409), - [sym_math_expression] = STATE(1409), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(3825), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(3827), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(3825), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3829), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1426), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1426), + [sym_math_expression] = STATE(1426), + [sym_cast_expression] = STATE(1426), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1426), + [sym_assignment_expression] = STATE(1426), + [sym_relational_expression] = STATE(1426), + [sym_shift_expression] = STATE(1426), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1426), + [sym_bitwise_expression] = STATE(1426), + [sym_equality_expression] = STATE(1426), + [sym_sizeof_expression] = STATE(1426), + [sym_compound_literal_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_char_literal] = STATE(1426), + [sym_null] = ACTIONS(3741), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3743), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3741), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3745), + [sym_true] = ACTIONS(3741), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1284] = { - [sym_do_statement] = STATE(1410), - [sym_goto_statement] = STATE(1410), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1410), - [sym_continue_statement] = STATE(1410), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1410), - [sym_labeled_statement] = STATE(1410), - [sym_expression_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3747), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1285] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym__Atomic] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2877), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2877), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [anon_sym_auto] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), }, [1286] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(2907), + [aux_sym_preproc_if_token2] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [aux_sym_preproc_else_token1] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [anon_sym_auto] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), }, [1287] = { - [sym_do_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_declaration] = STATE(1278), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_macro_type_specifier] = STATE(201), - [sym_type_definition] = STATE(1278), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [aux_sym_case_statement_repeat1] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1278), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [sym_labeled_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [anon_sym_LPAREN2] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_default] = ACTIONS(3831), - [sym_identifier] = ACTIONS(2736), - [sym_true] = ACTIONS(15), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [anon_sym_long] = ACTIONS(426), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_static] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(39), - [anon_sym_while] = ACTIONS(2744), - [sym_false] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_return] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_case] = ACTIONS(3831), - [sym_null] = ACTIONS(15), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_union] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_short] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym__Atomic] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3037), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3037), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3037), + [sym_true] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3037), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), }, [1288] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3835), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1989), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3749), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_RPAREN] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(326), }, [1289] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_auto] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2910), - [aux_sym_preproc_else_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token2] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [aux_sym_preproc_elif_token1] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(3751), + [anon_sym_DOT] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3751), }, [1290] = { - [aux_sym_preproc_if_token2] = ACTIONS(3837), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3753), }, [1291] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1412), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1412), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3839), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(85), + [sym_math_expression] = STATE(85), + [sym_cast_expression] = STATE(85), + [sym_field_expression] = STATE(83), + [aux_sym_sized_type_specifier_repeat1] = STATE(84), + [sym_struct_specifier] = STATE(89), + [sym__expression] = STATE(85), + [sym_comma_expression] = STATE(86), + [sym_bitwise_expression] = STATE(85), + [sym_equality_expression] = STATE(85), + [sym_type_descriptor] = STATE(1430), + [sym_sizeof_expression] = STATE(85), + [sym_compound_literal_expression] = STATE(85), + [sym_parenthesized_expression] = STATE(85), + [sym_char_literal] = STATE(85), + [sym_concatenated_string] = STATE(85), + [sym_macro_type_specifier] = STATE(89), + [aux_sym_type_definition_repeat1] = STATE(88), + [sym__type_specifier] = STATE(89), + [sym_union_specifier] = STATE(89), + [sym_type_qualifier] = STATE(88), + [sym_conditional_expression] = STATE(85), + [sym_assignment_expression] = STATE(85), + [sym_relational_expression] = STATE(85), + [sym_shift_expression] = STATE(85), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym_sized_type_specifier] = STATE(89), + [sym_enum_specifier] = STATE(89), + [anon_sym_union] = ACTIONS(7), + [sym_null] = ACTIONS(153), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(155), + [anon_sym_short] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(165), + [sym_true] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(169), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_struct] = ACTIONS(59), + [sym_false] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(173), + [anon_sym_signed] = ACTIONS(155), + [anon_sym_long] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1292] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1415), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1415), - [sym__field_declaration_list_item] = STATE(1415), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1414), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1414), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1415), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1415), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1415), - [sym_field_declaration] = STATE(1415), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3841), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(372), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1293] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(434), - [anon_sym_long] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_primitive_type] = ACTIONS(434), - [anon_sym_auto] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym_inline] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [sym_identifier] = ACTIONS(434), - [aux_sym_preproc_if_token2] = ACTIONS(434), - [sym_preproc_directive] = ACTIONS(434), - [anon_sym_unsigned] = ACTIONS(434), - [aux_sym_preproc_if_token1] = ACTIONS(434), - [anon_sym_short] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(434), - [aux_sym_preproc_def_token1] = ACTIONS(434), - [anon_sym_signed] = ACTIONS(434), - [anon_sym_register] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), + [aux_sym_concatenated_string_repeat1] = STATE(1431), + [sym_string_literal] = STATE(1431), + [anon_sym_PERCENT] = ACTIONS(712), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_LPAREN2] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(712), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(710), }, [1294] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3843), + [sym_concatenated_string] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_null] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(847), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(845), + [sym_identifier] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1295] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1419), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1419), - [sym__field_declaration_list_item] = STATE(1419), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1418), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1418), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1419), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1419), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1419), - [sym_field_declaration] = STATE(1419), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3845), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1432), + [sym_pointer_expression] = STATE(1432), + [sym_logical_expression] = STATE(1432), + [sym_math_expression] = STATE(1432), + [sym_cast_expression] = STATE(1432), + [sym_field_expression] = STATE(1432), + [sym_conditional_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1432), + [sym_relational_expression] = STATE(1432), + [sym_shift_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_call_expression] = STATE(1432), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1432), + [sym_bitwise_expression] = STATE(1432), + [sym_equality_expression] = STATE(1432), + [sym_sizeof_expression] = STATE(1432), + [sym_compound_literal_expression] = STATE(1432), + [sym_parenthesized_expression] = STATE(1432), + [sym_char_literal] = STATE(1432), + [sym_null] = ACTIONS(3761), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3763), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3761), + [sym_identifier] = ACTIONS(3761), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3761), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1296] = { - [sym_preproc_params] = STATE(1422), - [sym_comment] = ACTIONS(139), - [sym_preproc_arg] = ACTIONS(3847), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_LF] = ACTIONS(3849), + [sym_concatenated_string] = STATE(1433), + [sym_pointer_expression] = STATE(1433), + [sym_logical_expression] = STATE(1433), + [sym_math_expression] = STATE(1433), + [sym_cast_expression] = STATE(1433), + [sym_field_expression] = STATE(1433), + [sym_conditional_expression] = STATE(1433), + [sym_assignment_expression] = STATE(1433), + [sym_relational_expression] = STATE(1433), + [sym_shift_expression] = STATE(1433), + [sym_subscript_expression] = STATE(1433), + [sym_call_expression] = STATE(1433), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1433), + [sym_bitwise_expression] = STATE(1433), + [sym_equality_expression] = STATE(1433), + [sym_sizeof_expression] = STATE(1433), + [sym_compound_literal_expression] = STATE(1433), + [sym_parenthesized_expression] = STATE(1433), + [sym_char_literal] = STATE(1433), + [sym_null] = ACTIONS(3765), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3767), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3765), + [sym_identifier] = ACTIONS(3765), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3765), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1297] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [sym_preproc_directive] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_def_token1] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), + [sym_concatenated_string] = STATE(1434), + [sym_pointer_expression] = STATE(1434), + [sym_logical_expression] = STATE(1434), + [sym_math_expression] = STATE(1434), + [sym_cast_expression] = STATE(1434), + [sym_field_expression] = STATE(1434), + [sym_conditional_expression] = STATE(1434), + [sym_assignment_expression] = STATE(1434), + [sym_relational_expression] = STATE(1434), + [sym_shift_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_call_expression] = STATE(1434), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1434), + [sym_bitwise_expression] = STATE(1434), + [sym_equality_expression] = STATE(1434), + [sym_sizeof_expression] = STATE(1434), + [sym_compound_literal_expression] = STATE(1434), + [sym_parenthesized_expression] = STATE(1434), + [sym_char_literal] = STATE(1434), + [sym_null] = ACTIONS(3769), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3771), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3769), + [sym_identifier] = ACTIONS(3769), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3769), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1298] = { - [sym_bitfield_clause] = STATE(1424), - [sym_parameter_list] = STATE(872), - [aux_sym_field_declaration_repeat1] = STATE(1425), - [anon_sym_LPAREN2] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(3851), + [sym_concatenated_string] = STATE(1435), + [sym_pointer_expression] = STATE(1435), + [sym_logical_expression] = STATE(1435), + [sym_math_expression] = STATE(1435), + [sym_cast_expression] = STATE(1435), + [sym_field_expression] = STATE(1435), + [sym_conditional_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_relational_expression] = STATE(1435), + [sym_shift_expression] = STATE(1435), + [sym_subscript_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1435), + [sym_bitwise_expression] = STATE(1435), + [sym_equality_expression] = STATE(1435), + [sym_sizeof_expression] = STATE(1435), + [sym_compound_literal_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_char_literal] = STATE(1435), + [sym_null] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3775), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3773), + [sym_identifier] = ACTIONS(3773), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3773), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1299] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3851), + [sym_concatenated_string] = STATE(1436), + [sym_pointer_expression] = STATE(1436), + [sym_logical_expression] = STATE(1436), + [sym_math_expression] = STATE(1436), + [sym_cast_expression] = STATE(1436), + [sym_field_expression] = STATE(1436), + [sym_conditional_expression] = STATE(1436), + [sym_assignment_expression] = STATE(1436), + [sym_relational_expression] = STATE(1436), + [sym_shift_expression] = STATE(1436), + [sym_subscript_expression] = STATE(1436), + [sym_call_expression] = STATE(1436), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1436), + [sym_bitwise_expression] = STATE(1436), + [sym_equality_expression] = STATE(1436), + [sym_sizeof_expression] = STATE(1436), + [sym_compound_literal_expression] = STATE(1436), + [sym_parenthesized_expression] = STATE(1436), + [sym_char_literal] = STATE(1436), + [sym_null] = ACTIONS(3777), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3779), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3777), + [sym_identifier] = ACTIONS(3777), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3777), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1300] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1300), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1300), - [sym__field_declaration_list_item] = STATE(1300), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_struct_specifier] = STATE(305), - [sym_union_specifier] = STATE(305), - [sym_preproc_call] = STATE(1300), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1300), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1300), - [sym_field_declaration] = STATE(1300), - [sym__declaration_specifiers] = STATE(1102), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3853), - [anon_sym_long] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2176), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [aux_sym_preproc_if_token2] = ACTIONS(3410), - [sym_preproc_directive] = ACTIONS(3856), - [anon_sym_unsigned] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(3859), - [anon_sym_short] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3853), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [anon_sym_signed] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2170), + [sym_concatenated_string] = STATE(1437), + [sym_pointer_expression] = STATE(1437), + [sym_logical_expression] = STATE(1437), + [sym_math_expression] = STATE(1437), + [sym_cast_expression] = STATE(1437), + [sym_field_expression] = STATE(1437), + [sym_conditional_expression] = STATE(1437), + [sym_assignment_expression] = STATE(1437), + [sym_relational_expression] = STATE(1437), + [sym_shift_expression] = STATE(1437), + [sym_subscript_expression] = STATE(1437), + [sym_call_expression] = STATE(1437), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1437), + [sym_bitwise_expression] = STATE(1437), + [sym_equality_expression] = STATE(1437), + [sym_sizeof_expression] = STATE(1437), + [sym_compound_literal_expression] = STATE(1437), + [sym_parenthesized_expression] = STATE(1437), + [sym_char_literal] = STATE(1437), + [sym_null] = ACTIONS(3781), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3783), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3781), + [sym_identifier] = ACTIONS(3781), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3781), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1301] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [aux_sym_preproc_else_token1] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [aux_sym_preproc_elif_token1] = ACTIONS(1075), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), + [sym_concatenated_string] = STATE(1438), + [sym_pointer_expression] = STATE(1438), + [sym_logical_expression] = STATE(1438), + [sym_math_expression] = STATE(1438), + [sym_cast_expression] = STATE(1438), + [sym_field_expression] = STATE(1438), + [sym_conditional_expression] = STATE(1438), + [sym_assignment_expression] = STATE(1438), + [sym_relational_expression] = STATE(1438), + [sym_shift_expression] = STATE(1438), + [sym_subscript_expression] = STATE(1438), + [sym_call_expression] = STATE(1438), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1438), + [sym_bitwise_expression] = STATE(1438), + [sym_equality_expression] = STATE(1438), + [sym_sizeof_expression] = STATE(1438), + [sym_compound_literal_expression] = STATE(1438), + [sym_parenthesized_expression] = STATE(1438), + [sym_char_literal] = STATE(1438), + [sym_null] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3787), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3785), + [sym_identifier] = ACTIONS(3785), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3785), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1302] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), - [anon_sym_long] = ACTIONS(2924), - [anon_sym__Atomic] = ACTIONS(2924), - [sym_primitive_type] = ACTIONS(2924), - [anon_sym_auto] = ACTIONS(2924), - [anon_sym_volatile] = ACTIONS(2924), - [anon_sym_inline] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2924), - [aux_sym_preproc_else_token1] = ACTIONS(2924), - [aux_sym_preproc_if_token2] = ACTIONS(2924), - [sym_preproc_directive] = ACTIONS(2924), - [anon_sym_unsigned] = ACTIONS(2924), - [aux_sym_preproc_if_token1] = ACTIONS(2924), - [anon_sym_short] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_restrict] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), - [aux_sym_preproc_elif_token1] = ACTIONS(2924), - [aux_sym_preproc_def_token1] = ACTIONS(2924), - [anon_sym_signed] = ACTIONS(2924), - [anon_sym_register] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), + [sym_concatenated_string] = STATE(1439), + [sym_pointer_expression] = STATE(1439), + [sym_logical_expression] = STATE(1439), + [sym_math_expression] = STATE(1439), + [sym_cast_expression] = STATE(1439), + [sym_field_expression] = STATE(1439), + [sym_conditional_expression] = STATE(1439), + [sym_assignment_expression] = STATE(1439), + [sym_relational_expression] = STATE(1439), + [sym_shift_expression] = STATE(1439), + [sym_subscript_expression] = STATE(1439), + [sym_call_expression] = STATE(1439), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1439), + [sym_bitwise_expression] = STATE(1439), + [sym_equality_expression] = STATE(1439), + [sym_sizeof_expression] = STATE(1439), + [sym_compound_literal_expression] = STATE(1439), + [sym_parenthesized_expression] = STATE(1439), + [sym_char_literal] = STATE(1439), + [sym_null] = ACTIONS(3789), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3791), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3789), + [sym_identifier] = ACTIONS(3789), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3789), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1303] = { - [aux_sym_preproc_if_token2] = ACTIONS(3865), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(1440), + [sym_pointer_expression] = STATE(1440), + [sym_logical_expression] = STATE(1440), + [sym_math_expression] = STATE(1440), + [sym_cast_expression] = STATE(1440), + [sym_field_expression] = STATE(1440), + [sym_conditional_expression] = STATE(1440), + [sym_assignment_expression] = STATE(1440), + [sym_relational_expression] = STATE(1440), + [sym_shift_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_call_expression] = STATE(1440), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1440), + [sym_bitwise_expression] = STATE(1440), + [sym_equality_expression] = STATE(1440), + [sym_sizeof_expression] = STATE(1440), + [sym_compound_literal_expression] = STATE(1440), + [sym_parenthesized_expression] = STATE(1440), + [sym_char_literal] = STATE(1440), + [sym_null] = ACTIONS(3793), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(3793), + [sym_identifier] = ACTIONS(3793), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(3793), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1304] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1427), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1427), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(3867), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(1441), + [sym_pointer_expression] = STATE(365), + [sym_logical_expression] = STATE(1441), + [sym_math_expression] = STATE(1441), + [sym_cast_expression] = STATE(1441), + [sym_field_expression] = STATE(365), + [sym_conditional_expression] = STATE(1441), + [sym_assignment_expression] = STATE(1441), + [sym_relational_expression] = STATE(1441), + [sym_shift_expression] = STATE(1441), + [sym_subscript_expression] = STATE(365), + [sym_call_expression] = STATE(365), + [sym_string_literal] = STATE(368), + [sym__expression] = STATE(1441), + [sym_bitwise_expression] = STATE(1441), + [sym_equality_expression] = STATE(1441), + [sym_sizeof_expression] = STATE(1441), + [sym_compound_literal_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1441), + [sym_char_literal] = STATE(1441), + [sym_null] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(919), + [sym_number_literal] = ACTIONS(3799), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3797), + [sym_identifier] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(927), + [sym_true] = ACTIONS(3797), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_sizeof] = ACTIONS(935), }, [1305] = { - [aux_sym_preproc_if_token2] = ACTIONS(3869), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1306] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1428), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1428), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1307] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3801), }, [1308] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_else_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [aux_sym_preproc_elif_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(3803), + [anon_sym_RBRACE] = ACTIONS(3803), + [sym_comment] = ACTIONS(3), }, [1309] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(3875), - [sym_preproc_arg] = ACTIONS(3877), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(3803), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1310] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), - [anon_sym_long] = ACTIONS(2952), - [anon_sym__Atomic] = ACTIONS(2952), - [sym_primitive_type] = ACTIONS(2952), - [anon_sym_auto] = ACTIONS(2952), - [anon_sym_volatile] = ACTIONS(2952), - [anon_sym_inline] = ACTIONS(2952), - [anon_sym_extern] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2952), - [aux_sym_preproc_else_token1] = ACTIONS(2952), - [aux_sym_preproc_if_token2] = ACTIONS(2952), - [sym_preproc_directive] = ACTIONS(2952), - [anon_sym_unsigned] = ACTIONS(2952), - [aux_sym_preproc_if_token1] = ACTIONS(2952), - [anon_sym_short] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_restrict] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), - [aux_sym_preproc_elif_token1] = ACTIONS(2952), - [aux_sym_preproc_def_token1] = ACTIONS(2952), - [anon_sym_signed] = ACTIONS(2952), - [anon_sym_register] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(3805), + [anon_sym_RBRACK] = ACTIONS(3807), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3807), + [anon_sym_AMP_EQ] = ACTIONS(3807), + [anon_sym_DASH_EQ] = ACTIONS(3807), + [anon_sym_LT] = ACTIONS(3805), + [anon_sym_LT_EQ] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_CARET] = ACTIONS(3805), + [anon_sym_AMP_AMP] = ACTIONS(3807), + [anon_sym_DASH_GT] = ACTIONS(3807), + [anon_sym_EQ] = ACTIONS(3805), + [anon_sym_LPAREN2] = ACTIONS(3807), + [anon_sym_GT_GT] = ACTIONS(3805), + [anon_sym_SLASH] = ACTIONS(3805), + [anon_sym_DASH_DASH] = ACTIONS(3807), + [anon_sym_RBRACE] = ACTIONS(3807), + [anon_sym_COLON] = ACTIONS(3807), + [anon_sym_PLUS_EQ] = ACTIONS(3807), + [anon_sym_STAR_EQ] = ACTIONS(3807), + [anon_sym_LT_LT_EQ] = ACTIONS(3807), + [anon_sym_QMARK] = ACTIONS(3807), + [anon_sym_EQ_EQ] = ACTIONS(3807), + [anon_sym_GT_EQ] = ACTIONS(3807), + [anon_sym_PIPE_PIPE] = ACTIONS(3807), + [anon_sym_CARET_EQ] = ACTIONS(3807), + [anon_sym_COMMA] = ACTIONS(3807), + [anon_sym_PLUS] = ACTIONS(3805), + [anon_sym_STAR] = ACTIONS(3805), + [anon_sym_PLUS_PLUS] = ACTIONS(3807), + [anon_sym_SLASH_EQ] = ACTIONS(3807), + [anon_sym_GT_GT_EQ] = ACTIONS(3807), + [anon_sym_BANG_EQ] = ACTIONS(3807), + [anon_sym_SEMI] = ACTIONS(3807), + [anon_sym_GT] = ACTIONS(3805), + [anon_sym_LT_LT] = ACTIONS(3805), + [anon_sym_PIPE] = ACTIONS(3805), + [anon_sym_PIPE_EQ] = ACTIONS(3807), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_RPAREN] = ACTIONS(3807), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3807), }, [1311] = { + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3879), }, [1312] = { - [sym_bitfield_clause] = STATE(1433), - [aux_sym_field_declaration_repeat1] = STATE(1130), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(3879), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(3809), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1313] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), - [anon_sym_long] = ACTIONS(3881), - [anon_sym__Atomic] = ACTIONS(3881), - [sym_primitive_type] = ACTIONS(3881), - [anon_sym_auto] = ACTIONS(3881), - [anon_sym_volatile] = ACTIONS(3881), - [anon_sym_inline] = ACTIONS(3881), - [anon_sym_extern] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3881), - [anon_sym_union] = ACTIONS(3881), - [sym_preproc_directive] = ACTIONS(3881), - [anon_sym_unsigned] = ACTIONS(3881), - [aux_sym_preproc_if_token1] = ACTIONS(3881), - [anon_sym_short] = ACTIONS(3881), - [anon_sym_static] = ACTIONS(3881), - [anon_sym_restrict] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3883), - [anon_sym_struct] = ACTIONS(3881), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), - [aux_sym_preproc_def_token1] = ACTIONS(3881), - [anon_sym_signed] = ACTIONS(3881), - [anon_sym_register] = ACTIONS(3881), - [anon_sym_enum] = ACTIONS(3881), - [anon_sym_const] = ACTIONS(3881), + [sym_concatenated_string] = STATE(1312), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1312), + [sym_math_expression] = STATE(1312), + [sym_cast_expression] = STATE(1312), + [aux_sym_initializer_pair_repeat1] = STATE(822), + [sym_field_expression] = STATE(817), + [sym_subscript_designator] = STATE(822), + [sym_field_designator] = STATE(822), + [sym_conditional_expression] = STATE(1312), + [sym_assignment_expression] = STATE(1312), + [sym_relational_expression] = STATE(1312), + [sym_shift_expression] = STATE(1312), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(1311), + [sym_initializer_pair] = STATE(1311), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1312), + [sym_bitwise_expression] = STATE(1312), + [sym_equality_expression] = STATE(1312), + [sym_sizeof_expression] = STATE(1312), + [sym_compound_literal_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_char_literal] = STATE(1312), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_null] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [sym_false] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(3811), + [sym_true] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2065), }, [1314] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3885), - [anon_sym_long] = ACTIONS(3885), - [anon_sym__Atomic] = ACTIONS(3885), - [sym_primitive_type] = ACTIONS(3885), - [anon_sym_auto] = ACTIONS(3885), - [anon_sym_volatile] = ACTIONS(3885), - [anon_sym_inline] = ACTIONS(3885), - [anon_sym_extern] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3885), - [anon_sym_union] = ACTIONS(3885), - [sym_preproc_directive] = ACTIONS(3885), - [anon_sym_unsigned] = ACTIONS(3885), - [aux_sym_preproc_if_token1] = ACTIONS(3885), - [anon_sym_short] = ACTIONS(3885), - [anon_sym_static] = ACTIONS(3885), - [anon_sym_restrict] = ACTIONS(3885), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_struct] = ACTIONS(3885), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3885), - [aux_sym_preproc_def_token1] = ACTIONS(3885), - [anon_sym_signed] = ACTIONS(3885), - [anon_sym_register] = ACTIONS(3885), - [anon_sym_enum] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3885), + [aux_sym_initializer_list_repeat1] = STATE(1314), + [anon_sym_COMMA] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3809), + [sym_comment] = ACTIONS(3), }, [1315] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [anon_sym_unsigned] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_struct] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_register] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), + [aux_sym_concatenated_string_repeat1] = STATE(1315), + [sym_string_literal] = STATE(1315), + [anon_sym_PERCENT] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [1316] = { - [anon_sym_LPAREN2] = ACTIONS(3889), - [anon_sym_COLON] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3889), - [anon_sym_COMMA] = ACTIONS(3889), - [anon_sym_SEMI] = ACTIONS(3889), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1317] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(78), - [sym_logical_expression] = STATE(78), - [sym_bitwise_expression] = STATE(78), - [sym_cast_expression] = STATE(78), - [sym_field_expression] = STATE(78), - [sym_compound_literal_expression] = STATE(78), - [sym_char_literal] = STATE(78), - [sym_assignment_expression] = STATE(78), - [sym_pointer_expression] = STATE(78), - [sym_shift_expression] = STATE(78), - [sym_math_expression] = STATE(78), - [sym_call_expression] = STATE(78), - [sym_conditional_expression] = STATE(78), - [sym_equality_expression] = STATE(78), - [sym_relational_expression] = STATE(78), - [sym_sizeof_expression] = STATE(78), - [sym_subscript_expression] = STATE(78), - [sym_parenthesized_expression] = STATE(78), - [sym_concatenated_string] = STATE(78), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(3891), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1318] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3891), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1319] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3893), - [anon_sym_long] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(3893), - [anon_sym_auto] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_inline] = ACTIONS(3893), - [anon_sym_extern] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3893), - [anon_sym_union] = ACTIONS(3893), - [sym_preproc_directive] = ACTIONS(3893), - [anon_sym_unsigned] = ACTIONS(3893), - [aux_sym_preproc_if_token1] = ACTIONS(3893), - [anon_sym_short] = ACTIONS(3893), - [anon_sym_static] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(3895), - [anon_sym_struct] = ACTIONS(3893), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3893), - [aux_sym_preproc_def_token1] = ACTIONS(3893), - [anon_sym_signed] = ACTIONS(3893), - [anon_sym_register] = ACTIONS(3893), - [anon_sym_enum] = ACTIONS(3893), - [anon_sym_const] = ACTIONS(3893), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [1320] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1321] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3897), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1322] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1436), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1323] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1437), - [sym_logical_expression] = STATE(1437), - [sym_bitwise_expression] = STATE(1437), - [sym_cast_expression] = STATE(1437), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1437), - [sym_char_literal] = STATE(1437), - [sym_assignment_expression] = STATE(1437), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1437), - [sym_math_expression] = STATE(1437), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1437), - [sym_equality_expression] = STATE(1437), - [sym_relational_expression] = STATE(1437), - [sym_sizeof_expression] = STATE(1437), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1437), - [sym_concatenated_string] = STATE(1437), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3899), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3899), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3901), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3897), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1324] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1439), - [sym_logical_expression] = STATE(1439), - [sym_bitwise_expression] = STATE(1439), - [sym_cast_expression] = STATE(1439), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1439), - [sym_char_literal] = STATE(1439), - [sym_assignment_expression] = STATE(1439), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1439), - [sym_math_expression] = STATE(1439), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1439), - [sym_equality_expression] = STATE(1439), - [sym_relational_expression] = STATE(1439), - [sym_sizeof_expression] = STATE(1439), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3903), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3903), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3905), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3907), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1325] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3909), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(3816), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [1326] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1441), - [sym_logical_expression] = STATE(1441), - [sym_bitwise_expression] = STATE(1441), - [sym_cast_expression] = STATE(1441), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1441), - [sym_char_literal] = STATE(1441), - [sym_assignment_expression] = STATE(1441), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1441), - [sym_math_expression] = STATE(1441), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1441), - [sym_equality_expression] = STATE(1441), - [sym_relational_expression] = STATE(1441), - [sym_sizeof_expression] = STATE(1441), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1441), - [sym_concatenated_string] = STATE(1441), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3911), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3911), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3913), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3909), - [sym_false] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(207), + [sym_type_qualifier] = STATE(1326), + [aux_sym_type_definition_repeat1] = STATE(1326), + [sym_identifier] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), }, [1327] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_parameter_list] = STATE(1124), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(953), }, [1328] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_function_declarator] = STATE(965), + [sym__abstract_declarator] = STATE(827), + [sym_pointer_declarator] = STATE(965), + [sym_type_qualifier] = STATE(1446), + [aux_sym_type_definition_repeat1] = STATE(1446), + [sym_abstract_array_declarator] = STATE(827), + [sym__declarator] = STATE(965), + [sym_parameter_list] = STATE(261), + [sym_abstract_function_declarator] = STATE(827), + [sym_array_declarator] = STATE(965), + [sym_abstract_pointer_declarator] = STATE(827), + [sym_identifier] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(532), }, [1329] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [sym_attribute_specifier] = STATE(1447), + [aux_sym_function_declarator_repeat1] = STATE(1447), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(2426), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2426), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(2426), }, [1330] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1443), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_RPAREN] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3818), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), }, [1331] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1444), - [sym_logical_expression] = STATE(1444), - [sym_bitwise_expression] = STATE(1444), - [sym_cast_expression] = STATE(1444), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1444), - [sym_char_literal] = STATE(1444), - [sym_assignment_expression] = STATE(1444), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1444), - [sym_math_expression] = STATE(1444), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1444), - [sym_equality_expression] = STATE(1444), - [sym_relational_expression] = STATE(1444), - [sym_sizeof_expression] = STATE(1444), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1444), - [sym_concatenated_string] = STATE(1444), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3917), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3917), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3919), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_RPAREN] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3820), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3820), }, [1332] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1446), - [sym_logical_expression] = STATE(1446), - [sym_bitwise_expression] = STATE(1446), - [sym_cast_expression] = STATE(1446), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1446), - [sym_char_literal] = STATE(1446), - [sym_assignment_expression] = STATE(1446), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1446), - [sym_math_expression] = STATE(1446), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1446), - [sym_equality_expression] = STATE(1446), - [sym_relational_expression] = STATE(1446), - [sym_sizeof_expression] = STATE(1446), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1446), - [sym_concatenated_string] = STATE(1446), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3921), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3921), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3923), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3925), + [anon_sym_case] = ACTIONS(3822), + [sym_null] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_default] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_TILDE] = ACTIONS(3824), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3824), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_else] = ACTIONS(3822), + [sym_true] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [sym_identifier] = ACTIONS(3822), + [ts_builtin_sym_end] = ACTIONS(3824), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [anon_sym_auto] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym_DASH] = ACTIONS(3822), }, [1333] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3927), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1334] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1448), - [sym_logical_expression] = STATE(1448), - [sym_bitwise_expression] = STATE(1448), - [sym_cast_expression] = STATE(1448), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1448), - [sym_char_literal] = STATE(1448), - [sym_assignment_expression] = STATE(1448), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1448), - [sym_math_expression] = STATE(1448), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1448), - [sym_equality_expression] = STATE(1448), - [sym_relational_expression] = STATE(1448), - [sym_sizeof_expression] = STATE(1448), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1448), - [sym_concatenated_string] = STATE(1448), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3929), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3929), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(3927), - [sym_false] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(3826), + [sym_comment] = ACTIONS(3), }, [1335] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1450), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3826), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1336] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(3933), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_attribute_specifier] = STATE(1336), + [aux_sym_function_declarator_repeat1] = STATE(1336), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3160), }, [1337] = { - [sym_string_literal] = STATE(622), - [sym__expression] = STATE(1449), - [sym_logical_expression] = STATE(1449), - [sym_bitwise_expression] = STATE(1449), - [sym_cast_expression] = STATE(1449), - [sym_field_expression] = STATE(1449), - [sym_compound_literal_expression] = STATE(1449), - [sym_char_literal] = STATE(1449), - [sym_assignment_expression] = STATE(1449), - [sym_pointer_expression] = STATE(1449), - [sym_shift_expression] = STATE(1449), - [sym_math_expression] = STATE(1449), - [sym_call_expression] = STATE(1449), - [sym_conditional_expression] = STATE(1449), - [sym_equality_expression] = STATE(1449), - [sym_relational_expression] = STATE(1449), - [sym_sizeof_expression] = STATE(1449), - [sym_subscript_expression] = STATE(1449), - [sym_parenthesized_expression] = STATE(1449), - [sym_concatenated_string] = STATE(1449), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [sym_identifier] = ACTIONS(3935), - [sym_true] = ACTIONS(3935), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1532), - [sym_null] = ACTIONS(3935), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [sym_number_literal] = ACTIONS(3937), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [sym_false] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(879), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1338] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1452), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3828), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1339] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(2109), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(3939), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(3529), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_RBRACK] = ACTIONS(2107), + [sym_concatenated_string] = STATE(1453), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1453), + [sym_math_expression] = STATE(1453), + [sym_cast_expression] = STATE(1453), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_relational_expression] = STATE(1453), + [sym_shift_expression] = STATE(1453), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1453), + [sym_bitwise_expression] = STATE(1453), + [sym_equality_expression] = STATE(1453), + [sym_sizeof_expression] = STATE(1453), + [sym_compound_literal_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_char_literal] = STATE(1453), + [sym_null] = ACTIONS(3830), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3832), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3830), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3830), + [anon_sym_RPAREN] = ACTIONS(3828), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1340] = { - [sym_string_literal] = STATE(645), - [sym__expression] = STATE(1450), - [sym_logical_expression] = STATE(1450), - [sym_bitwise_expression] = STATE(1450), - [sym_cast_expression] = STATE(1450), - [sym_field_expression] = STATE(1450), - [sym_compound_literal_expression] = STATE(1450), - [sym_char_literal] = STATE(1450), - [sym_assignment_expression] = STATE(1450), - [sym_pointer_expression] = STATE(1450), - [sym_shift_expression] = STATE(1450), - [sym_math_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_conditional_expression] = STATE(1450), - [sym_equality_expression] = STATE(1450), - [sym_relational_expression] = STATE(1450), - [sym_sizeof_expression] = STATE(1450), - [sym_subscript_expression] = STATE(1450), - [sym_parenthesized_expression] = STATE(1450), - [sym_concatenated_string] = STATE(1450), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(1582), - [sym_identifier] = ACTIONS(3941), - [sym_true] = ACTIONS(3941), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_sizeof] = ACTIONS(1586), - [sym_null] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [sym_number_literal] = ACTIONS(3943), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [sym_false] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(907), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1341] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1606), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(3067), + [sym_while_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_goto_statement] = STATE(1346), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_declaration] = STATE(1346), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1346), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_expression_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_do_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1346), + [sym_sizeof_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_switch_statement] = STATE(1346), + [sym_return_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [aux_sym_case_statement_repeat1] = STATE(1346), + [sym_labeled_statement] = STATE(1346), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(3836), + [sym_null] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_unsigned] = ACTIONS(553), + [anon_sym_short] = ACTIONS(553), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_default] = ACTIONS(3836), + [sym_true] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [anon_sym_register] = ACTIONS(17), + [sym_identifier] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1342] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(3945), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1456), + [sym_math_expression] = STATE(1456), + [sym_cast_expression] = STATE(1456), + [sym_declaration] = STATE(1455), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1456), + [sym_bitwise_expression] = STATE(1456), + [sym_equality_expression] = STATE(1456), + [sym_sizeof_expression] = STATE(1456), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1456), + [sym_parenthesized_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1456), + [sym_char_literal] = STATE(1456), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1456), + [sym_relational_expression] = STATE(1456), + [sym_shift_expression] = STATE(1456), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(3840), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(3840), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(3840), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [1343] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), + [sym_while_statement] = STATE(1461), + [sym_continue_statement] = STATE(1461), + [sym_goto_statement] = STATE(1461), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1461), + [sym_expression_statement] = STATE(1461), + [sym_if_statement] = STATE(1461), + [sym_do_statement] = STATE(1461), + [sym_for_statement] = STATE(1461), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1461), + [sym_return_statement] = STATE(1461), + [sym_break_statement] = STATE(1461), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1461), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1344] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3955), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1345] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3965), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1346] = { - [sym_string_literal] = STATE(1346), - [aux_sym_concatenated_string_repeat1] = STATE(1346), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1475), + [sym_while_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_goto_statement] = STATE(1346), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_declaration] = STATE(1346), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1346), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym_expression_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_do_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_type_definition] = STATE(1346), + [sym_sizeof_expression] = STATE(42), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_switch_statement] = STATE(1346), + [sym_return_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [aux_sym_case_statement_repeat1] = STATE(1346), + [sym_labeled_statement] = STATE(1346), + [anon_sym_LBRACE] = ACTIONS(3856), + [anon_sym_union] = ACTIONS(3859), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3867), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3873), + [sym_null] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3879), + [anon_sym_goto] = ACTIONS(3882), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(3885), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_const] = ACTIONS(3867), + [anon_sym_LPAREN2] = ACTIONS(3891), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_DASH_DASH] = ACTIONS(3899), + [anon_sym_default] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3867), + [sym_primitive_type] = ACTIONS(3902), + [sym_true] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3905), + [anon_sym_break] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_static] = ACTIONS(3914), + [anon_sym_restrict] = ACTIONS(3867), + [anon_sym_register] = ACTIONS(3914), + [anon_sym_extern] = ACTIONS(3914), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3920), + [anon_sym_switch] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3944), + [sym_false] = ACTIONS(3876), + [sym_identifier] = ACTIONS(3947), + [anon_sym_auto] = ACTIONS(3914), + [anon_sym_SQUOTE] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3914), + [anon_sym___attribute__] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3929), }, [1347] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1464), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1464), + [sym_math_expression] = STATE(1464), + [sym_cast_expression] = STATE(1464), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1464), + [sym_assignment_expression] = STATE(1464), + [sym_relational_expression] = STATE(1464), + [sym_shift_expression] = STATE(1464), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1464), + [sym_bitwise_expression] = STATE(1464), + [sym_equality_expression] = STATE(1464), + [sym_sizeof_expression] = STATE(1464), + [sym_compound_literal_expression] = STATE(1464), + [sym_parenthesized_expression] = STATE(1464), + [sym_char_literal] = STATE(1464), + [sym_null] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3956), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3956), + [anon_sym_RPAREN] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1348] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_CARET_EQ] = ACTIONS(1500), - [anon_sym_LT_LT_EQ] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_GT_GT_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_BANG_EQ] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_PIPE_EQ] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1500), - [anon_sym_AMP_EQ] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_LT_EQ] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3962), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1349] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1466), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1466), + [sym_math_expression] = STATE(1466), + [sym_cast_expression] = STATE(1466), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1466), + [sym_assignment_expression] = STATE(1466), + [sym_relational_expression] = STATE(1466), + [sym_shift_expression] = STATE(1466), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1466), + [sym_bitwise_expression] = STATE(1466), + [sym_equality_expression] = STATE(1466), + [sym_sizeof_expression] = STATE(1466), + [sym_compound_literal_expression] = STATE(1466), + [sym_parenthesized_expression] = STATE(1466), + [sym_char_literal] = STATE(1466), + [sym_null] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(3964), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(3962), + [sym_true] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1350] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_goto_statement] = STATE(1467), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1467), + [sym_expression_statement] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1467), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1351] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1352] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(3967), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1353] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1566), - [anon_sym_CARET_EQ] = ACTIONS(1566), - [anon_sym_LT_LT_EQ] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1566), - [anon_sym_SLASH_EQ] = ACTIONS(1566), - [anon_sym_GT_GT_EQ] = ACTIONS(1566), - [anon_sym_STAR_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_PIPE_EQ] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1566), - [anon_sym_AMP_EQ] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1469), + [sym_math_expression] = STATE(1469), + [sym_cast_expression] = STATE(1469), + [sym_declaration] = STATE(1468), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1469), + [sym_bitwise_expression] = STATE(1469), + [sym_equality_expression] = STATE(1469), + [sym_sizeof_expression] = STATE(1469), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1469), + [sym_parenthesized_expression] = STATE(1469), + [sym_concatenated_string] = STATE(1469), + [sym_char_literal] = STATE(1469), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1469), + [sym_assignment_expression] = STATE(1469), + [sym_relational_expression] = STATE(1469), + [sym_shift_expression] = STATE(1469), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(3968), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(3968), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [1354] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(2005), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1355] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(326), }, [1356] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_CARET_EQ] = ACTIONS(1506), - [anon_sym_LT_LT_EQ] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_GT_GT_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_EQ] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1506), - [anon_sym_AMP_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_null] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3559), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1357] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1453), - [sym_logical_expression] = STATE(1453), - [sym_bitwise_expression] = STATE(1453), - [sym_cast_expression] = STATE(1453), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1453), - [sym_char_literal] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1453), - [sym_math_expression] = STATE(1453), - [sym_call_expression] = STATE(691), - [sym_conditional_expression] = STATE(1453), - [sym_equality_expression] = STATE(1453), - [sym_relational_expression] = STATE(1453), - [sym_sizeof_expression] = STATE(1453), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1453), - [sym_concatenated_string] = STATE(1453), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3969), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [sym_null] = ACTIONS(3969), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3971), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3969), - [anon_sym_AMP] = ACTIONS(1732), + [sym_concatenated_string] = STATE(1470), + [sym_pointer_expression] = STATE(1470), + [sym_logical_expression] = STATE(1470), + [sym_math_expression] = STATE(1470), + [sym_cast_expression] = STATE(1470), + [sym_field_expression] = STATE(1470), + [sym_conditional_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_relational_expression] = STATE(1470), + [sym_shift_expression] = STATE(1470), + [sym_subscript_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_string_literal] = STATE(619), + [sym__expression] = STATE(1470), + [sym_bitwise_expression] = STATE(1470), + [sym_equality_expression] = STATE(1470), + [sym_sizeof_expression] = STATE(1470), + [sym_compound_literal_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_char_literal] = STATE(1470), + [sym_null] = ACTIONS(3978), + [anon_sym_BANG] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(3980), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(869), + [sym_false] = ACTIONS(3978), + [sym_identifier] = ACTIONS(3978), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [sym_true] = ACTIONS(3978), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1522), }, [1358] = { - [anon_sym_LPAREN2] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_EQ] = ACTIONS(3975), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_PLUS_EQ] = ACTIONS(3973), - [anon_sym_CARET_EQ] = ACTIONS(3973), - [anon_sym_LT_LT_EQ] = ACTIONS(3973), - [anon_sym_QMARK] = ACTIONS(3973), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_PERCENT] = ACTIONS(3975), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_DASH_EQ] = ACTIONS(3973), - [anon_sym_SLASH_EQ] = ACTIONS(3973), - [anon_sym_GT_GT_EQ] = ACTIONS(3973), - [anon_sym_STAR_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_LT_LT] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_EQ] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3973), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3973), - [anon_sym_AMP_EQ] = ACTIONS(3973), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_CARET] = ACTIONS(3975), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_DOT] = ACTIONS(3973), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(326), }, [1359] = { - [sym_string_literal] = STATE(700), - [sym__expression] = STATE(1206), - [sym_logical_expression] = STATE(1206), - [sym_bitwise_expression] = STATE(1206), - [sym_cast_expression] = STATE(1206), - [sym_field_expression] = STATE(691), - [sym_compound_literal_expression] = STATE(1206), - [sym_field_designator] = STATE(702), - [sym_char_literal] = STATE(1206), - [sym_assignment_expression] = STATE(1206), - [sym_pointer_expression] = STATE(691), - [sym_shift_expression] = STATE(1206), - [sym_math_expression] = STATE(1206), - [sym_call_expression] = STATE(691), - [aux_sym_initializer_pair_repeat1] = STATE(702), - [sym_initializer_pair] = STATE(1207), - [sym_subscript_designator] = STATE(702), - [sym_conditional_expression] = STATE(1206), - [sym_equality_expression] = STATE(1206), - [sym_relational_expression] = STATE(1206), - [sym_sizeof_expression] = STATE(1206), - [sym_subscript_expression] = STATE(691), - [sym_parenthesized_expression] = STATE(1206), - [sym_initializer_list] = STATE(1207), - [sym_concatenated_string] = STATE(1206), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_LPAREN2] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [sym_true] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [sym_null] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(3167), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [sym_false] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1734), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(1594), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(3982), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(3587), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1360] = { - [sym_type_qualifier] = STATE(1360), - [aux_sym_type_definition_repeat1] = STATE(1360), - [anon_sym_LPAREN2] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1017), - [anon_sym__Atomic] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1019), + [sym_concatenated_string] = STATE(1471), + [sym_pointer_expression] = STATE(1471), + [sym_logical_expression] = STATE(1471), + [sym_math_expression] = STATE(1471), + [sym_cast_expression] = STATE(1471), + [sym_field_expression] = STATE(1471), + [sym_conditional_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_relational_expression] = STATE(1471), + [sym_shift_expression] = STATE(1471), + [sym_subscript_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_string_literal] = STATE(645), + [sym__expression] = STATE(1471), + [sym_bitwise_expression] = STATE(1471), + [sym_equality_expression] = STATE(1471), + [sym_sizeof_expression] = STATE(1471), + [sym_compound_literal_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_char_literal] = STATE(1471), + [sym_null] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(925), + [sym_false] = ACTIONS(3984), + [sym_identifier] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_true] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_sizeof] = ACTIONS(1594), }, [1361] = { - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_default] = ACTIONS(3979), - [sym_identifier] = ACTIONS(3979), - [anon_sym__Atomic] = ACTIONS(3979), - [anon_sym_TILDE] = ACTIONS(3977), - [sym_number_literal] = ACTIONS(3977), - [anon_sym_restrict] = ACTIONS(3979), - [anon_sym_typedef] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_while] = ACTIONS(3979), - [anon_sym_signed] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3979), - [anon_sym_SQUOTE] = ACTIONS(3977), - [anon_sym_volatile] = ACTIONS(3979), - [anon_sym_DQUOTE] = ACTIONS(3977), - [anon_sym_extern] = ACTIONS(3979), - [anon_sym_sizeof] = ACTIONS(3979), - [anon_sym_union] = ACTIONS(3979), - [anon_sym_unsigned] = ACTIONS(3979), - [anon_sym_short] = ACTIONS(3979), - [anon_sym_do] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_LPAREN2] = ACTIONS(3977), - [anon_sym_long] = ACTIONS(3979), - [sym_true] = ACTIONS(3979), - [sym_primitive_type] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [sym_preproc_directive] = ACTIONS(3979), - [aux_sym_preproc_if_token1] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_static] = ACTIONS(3979), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_switch] = ACTIONS(3979), - [sym_false] = ACTIONS(3979), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_return] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [aux_sym_preproc_include_token1] = ACTIONS(3979), - [anon_sym_auto] = ACTIONS(3979), - [anon_sym_inline] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_else] = ACTIONS(3979), - [anon_sym_case] = ACTIONS(3979), - [sym_null] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(3979), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(3977), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_goto] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3977), - [aux_sym_preproc_def_token1] = ACTIONS(3979), - [anon_sym_register] = ACTIONS(3979), - [anon_sym_const] = ACTIONS(3979), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [1362] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1363] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(3988), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3981), }, [1364] = { - [anon_sym_DASH_DASH] = ACTIONS(3231), - [sym_identifier] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [aux_sym_preproc_if_token2] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3233), - [aux_sym_preproc_elif_token1] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [aux_sym_preproc_else_token1] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [aux_sym_preproc_include_token1] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3233), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), + [aux_sym_for_statement_repeat1] = STATE(1473), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3988), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1365] = { - [sym_do_statement] = STATE(1456), - [sym_goto_statement] = STATE(1456), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1456), - [sym_switch_statement] = STATE(1456), - [sym_for_statement] = STATE(1456), - [sym_return_statement] = STATE(1456), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1456), - [sym_continue_statement] = STATE(1456), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1456), - [sym_labeled_statement] = STATE(1456), - [sym_expression_statement] = STATE(1456), - [sym_while_statement] = STATE(1456), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1366] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(3983), + [aux_sym_for_statement_repeat1] = STATE(1475), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1367] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1458), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1476), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1476), + [sym_math_expression] = STATE(1476), + [sym_cast_expression] = STATE(1476), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1476), + [sym_assignment_expression] = STATE(1476), + [sym_relational_expression] = STATE(1476), + [sym_shift_expression] = STATE(1476), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1476), + [sym_bitwise_expression] = STATE(1476), + [sym_equality_expression] = STATE(1476), + [sym_sizeof_expression] = STATE(1476), + [sym_compound_literal_expression] = STATE(1476), + [sym_parenthesized_expression] = STATE(1476), + [sym_char_literal] = STATE(1476), + [sym_null] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(3992), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(3992), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1368] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1459), - [sym_logical_expression] = STATE(1459), - [sym_bitwise_expression] = STATE(1459), - [sym_cast_expression] = STATE(1459), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1459), - [sym_char_literal] = STATE(1459), - [sym_assignment_expression] = STATE(1459), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1459), - [sym_math_expression] = STATE(1459), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1459), - [sym_equality_expression] = STATE(1459), - [sym_relational_expression] = STATE(1459), - [sym_sizeof_expression] = STATE(1459), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1459), - [sym_concatenated_string] = STATE(1459), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3985), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3985), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3987), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3983), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1369] = { - [sym_do_statement] = STATE(1460), - [sym_goto_statement] = STATE(1460), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1460), - [sym_for_statement] = STATE(1460), - [sym_return_statement] = STATE(1460), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1460), - [sym_continue_statement] = STATE(1460), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1460), - [sym_labeled_statement] = STATE(1460), - [sym_expression_statement] = STATE(1460), - [sym_while_statement] = STATE(1460), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3209), + [anon_sym_union] = ACTIONS(3209), + [anon_sym_unsigned] = ACTIONS(3209), + [anon_sym_volatile] = ACTIONS(3209), + [anon_sym_short] = ACTIONS(3209), + [anon_sym_static] = ACTIONS(3209), + [anon_sym_restrict] = ACTIONS(3209), + [anon_sym_register] = ACTIONS(3209), + [anon_sym_extern] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3209), + [aux_sym_preproc_if_token2] = ACTIONS(3209), + [sym_preproc_directive] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [anon_sym_long] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_struct] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3209), + [aux_sym_preproc_elif_token1] = ACTIONS(3209), + [aux_sym_preproc_def_token1] = ACTIONS(3209), + [anon_sym__Atomic] = ACTIONS(3209), + [anon_sym_auto] = ACTIONS(3209), + [sym_primitive_type] = ACTIONS(3209), + [anon_sym_inline] = ACTIONS(3209), + [anon_sym___attribute__] = ACTIONS(3209), }, [1370] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1462), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_preproc_if_token2] = ACTIONS(3998), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(3989), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), }, [1371] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1463), - [sym_logical_expression] = STATE(1463), - [sym_bitwise_expression] = STATE(1463), - [sym_cast_expression] = STATE(1463), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1463), - [sym_char_literal] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1463), - [sym_math_expression] = STATE(1463), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1463), - [sym_equality_expression] = STATE(1463), - [sym_relational_expression] = STATE(1463), - [sym_sizeof_expression] = STATE(1463), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1463), - [sym_concatenated_string] = STATE(1463), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(3991), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(3991), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(3993), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_signed] = ACTIONS(2464), + [aux_sym_preproc_if_token1] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2464), + [aux_sym_preproc_def_token1] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym___attribute__] = ACTIONS(2464), }, [1372] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1480), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1480), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1373] = { - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [anon_sym_auto] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_null] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), }, [1374] = { - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_long] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [anon_sym_auto] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_null] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), }, [1375] = { - [aux_sym_type_definition_repeat2] = STATE(806), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_unsigned] = ACTIONS(2478), + [anon_sym_volatile] = ACTIONS(2478), + [anon_sym_short] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_restrict] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2478), + [sym_preproc_directive] = ACTIONS(2478), + [anon_sym_signed] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2478), + [anon_sym_long] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), + [aux_sym_preproc_def_token1] = ACTIONS(2478), + [anon_sym__Atomic] = ACTIONS(2478), + [anon_sym_auto] = ACTIONS(2478), + [sym_primitive_type] = ACTIONS(2478), + [anon_sym_inline] = ACTIONS(2478), + [anon_sym___attribute__] = ACTIONS(2478), }, [1376] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1467), - [sym_logical_expression] = STATE(1467), - [sym_bitwise_expression] = STATE(1467), - [sym_cast_expression] = STATE(1467), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1467), - [sym_char_literal] = STATE(1467), - [sym_assignment_expression] = STATE(1467), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1467), - [sym_math_expression] = STATE(1467), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1467), - [sym_equality_expression] = STATE(1467), - [sym_relational_expression] = STATE(1467), - [sym_sizeof_expression] = STATE(1467), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1467), - [sym_concatenated_string] = STATE(1467), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(3999), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(3999), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4001), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4003), - [sym_false] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(207), + [sym__declaration_specifiers] = STATE(697), + [sym_preproc_def] = STATE(991), + [sym_macro_type_specifier] = STATE(172), + [sym_preproc_function_def] = STATE(991), + [sym__type_specifier] = STATE(172), + [sym_union_specifier] = STATE(172), + [sym_type_qualifier] = STATE(175), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), + [sym_storage_class_specifier] = STATE(175), + [sym_preproc_else_in_field_declaration_list] = STATE(1482), + [sym_struct_specifier] = STATE(172), + [sym_preproc_elif_in_field_declaration_list] = STATE(1482), + [sym_attribute_specifier] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(174), + [sym_preproc_call] = STATE(991), + [aux_sym__declaration_specifiers_repeat1] = STATE(175), + [sym_sized_type_specifier] = STATE(172), + [sym__field_declaration_list_item] = STATE(991), + [sym_enum_specifier] = STATE(172), + [sym_preproc_if_in_field_declaration_list] = STATE(991), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), + [sym_field_declaration] = STATE(991), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(352), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(352), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(59), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(352), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [sym_identifier] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_const] = ACTIONS(13), + [anon_sym_long] = ACTIONS(352), + [aux_sym_preproc_if_token2] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(362), + [anon_sym_inline] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(19), }, [1377] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_if_token2] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), }, [1378] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [aux_sym_preproc_if_token2] = ACTIONS(1242), - [sym_preproc_directive] = ACTIONS(1242), - [aux_sym_preproc_if_token1] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), - [aux_sym_preproc_include_token1] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(4007), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [aux_sym_preproc_def_token1] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(4008), }, [1379] = { - [anon_sym_LPAREN2] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2732), - [anon_sym__Atomic] = ACTIONS(2732), - [sym_primitive_type] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [aux_sym_preproc_if_token2] = ACTIONS(2732), - [sym_preproc_directive] = ACTIONS(2732), - [aux_sym_preproc_if_token1] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_restrict] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_signed] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2732), - [aux_sym_preproc_include_token1] = ACTIONS(2732), - [anon_sym_auto] = ACTIONS(2732), - [anon_sym_volatile] = ACTIONS(2732), - [anon_sym_inline] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_unsigned] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_short] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2730), - [sym_null] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_goto] = ACTIONS(2732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_register] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [sym_preproc_directive] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_def_token1] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), }, [1380] = { - [anon_sym_LPAREN2] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2764), - [anon_sym__Atomic] = ACTIONS(2764), - [sym_primitive_type] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [aux_sym_preproc_if_token2] = ACTIONS(2764), - [sym_preproc_directive] = ACTIONS(2764), - [aux_sym_preproc_if_token1] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_restrict] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_typedef] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_signed] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2764), - [aux_sym_preproc_include_token1] = ACTIONS(2764), - [anon_sym_auto] = ACTIONS(2764), - [anon_sym_volatile] = ACTIONS(2764), - [anon_sym_inline] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_short] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2762), - [sym_null] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(4010), + [sym_preproc_arg] = ACTIONS(4012), }, [1381] = { - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [aux_sym_preproc_if_token2] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [aux_sym_preproc_include_token1] = ACTIONS(2886), - [anon_sym_auto] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2884), - [sym_null] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsigned] = ACTIONS(2498), + [anon_sym_volatile] = ACTIONS(2498), + [anon_sym_short] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_restrict] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2498), + [sym_preproc_directive] = ACTIONS(2498), + [anon_sym_signed] = ACTIONS(2498), + [aux_sym_preproc_if_token1] = ACTIONS(2498), + [anon_sym_long] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2498), + [aux_sym_preproc_def_token1] = ACTIONS(2498), + [anon_sym__Atomic] = ACTIONS(2498), + [anon_sym_auto] = ACTIONS(2498), + [sym_primitive_type] = ACTIONS(2498), + [anon_sym_inline] = ACTIONS(2498), + [anon_sym___attribute__] = ACTIONS(2498), }, [1382] = { - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [aux_sym_preproc_if_token2] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [aux_sym_preproc_include_token1] = ACTIONS(2890), - [anon_sym_auto] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2888), - [sym_null] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), + [aux_sym_field_declaration_repeat1] = STATE(1010), + [sym_bitfield_clause] = STATE(1487), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(4014), }, [1383] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4009), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(4014), }, [1384] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), + [anon_sym_union] = ACTIONS(3231), + [anon_sym_unsigned] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_short] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_restrict] = ACTIONS(3231), + [anon_sym_register] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3231), + [aux_sym_preproc_if_token2] = ACTIONS(3231), + [sym_preproc_directive] = ACTIONS(3231), + [anon_sym_signed] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3231), + [anon_sym_long] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), + [aux_sym_preproc_elif_token1] = ACTIONS(3231), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [anon_sym__Atomic] = ACTIONS(3231), + [anon_sym_auto] = ACTIONS(3231), + [sym_primitive_type] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym___attribute__] = ACTIONS(3231), }, [1385] = { - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [sym_true] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [aux_sym_preproc_if_token2] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2986), - [anon_sym_typedef] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_switch] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_PLUS_PLUS] = ACTIONS(2986), - [sym_number_literal] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2988), - [sym_false] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [aux_sym_preproc_include_token1] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_sizeof] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_unsigned] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym_null] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_goto] = ACTIONS(2988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), + [aux_sym_preproc_if_token2] = ACTIONS(4016), + [sym_comment] = ACTIONS(3), }, [1386] = { - [anon_sym_LPAREN2] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_long] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_identifier] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [aux_sym_preproc_else_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [sym_number_literal] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [anon_sym_auto] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3317), - [sym_null] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3317), - [aux_sym_preproc_elif_token1] = ACTIONS(3319), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_register] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), + [aux_sym_preproc_if_token2] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), }, [1387] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1472), - [sym_logical_expression] = STATE(1472), - [sym_bitwise_expression] = STATE(1472), - [sym_cast_expression] = STATE(1472), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1472), - [sym_char_literal] = STATE(1472), - [sym_assignment_expression] = STATE(1472), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1472), - [sym_math_expression] = STATE(1472), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_relational_expression] = STATE(1472), - [sym_sizeof_expression] = STATE(1472), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1472), - [sym_concatenated_string] = STATE(1472), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4011), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4011), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4013), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4015), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(2257), + [aux_sym_preproc_if_token2] = ACTIONS(2257), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [aux_sym_preproc_elif_token1] = ACTIONS(2257), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [anon_sym__Atomic] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym___attribute__] = ACTIONS(2257), }, [1388] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4017), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(2269), + [aux_sym_preproc_if_token2] = ACTIONS(2269), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [aux_sym_preproc_elif_token1] = ACTIONS(2269), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [anon_sym__Atomic] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym___attribute__] = ACTIONS(2269), }, [1389] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1474), - [sym_logical_expression] = STATE(1474), - [sym_bitwise_expression] = STATE(1474), - [sym_cast_expression] = STATE(1474), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1474), - [sym_char_literal] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1474), - [sym_math_expression] = STATE(1474), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1474), - [sym_equality_expression] = STATE(1474), - [sym_relational_expression] = STATE(1474), - [sym_sizeof_expression] = STATE(1474), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1474), - [sym_concatenated_string] = STATE(1474), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4019), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4019), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4021), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4017), - [sym_false] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(207), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(4020), }, [1390] = { - [sym_do_statement] = STATE(1262), - [sym_goto_statement] = STATE(1262), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1262), - [sym_continue_statement] = STATE(1262), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1262), - [sym_labeled_statement] = STATE(1262), - [sym_expression_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), + [anon_sym_union] = ACTIONS(3255), + [anon_sym_unsigned] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_short] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_restrict] = ACTIONS(3255), + [anon_sym_register] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3255), + [aux_sym_preproc_if_token2] = ACTIONS(3255), + [sym_preproc_directive] = ACTIONS(3255), + [anon_sym_signed] = ACTIONS(3255), + [aux_sym_preproc_if_token1] = ACTIONS(3255), + [anon_sym_long] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), + [aux_sym_preproc_elif_token1] = ACTIONS(3255), + [aux_sym_preproc_def_token1] = ACTIONS(3255), + [anon_sym__Atomic] = ACTIONS(3255), + [anon_sym_auto] = ACTIONS(3255), + [sym_primitive_type] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym___attribute__] = ACTIONS(3255), }, [1391] = { - [anon_sym_DASH_DASH] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [aux_sym_preproc_if_token2] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), - [aux_sym_preproc_elif_token1] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1009), - [sym_true] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [aux_sym_preproc_else_token1] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [aux_sym_preproc_def_token1] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(4022), }, [1392] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4024), }, [1393] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4023), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1394] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1476), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1492), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1395] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1477), - [sym_logical_expression] = STATE(1477), - [sym_bitwise_expression] = STATE(1477), - [sym_cast_expression] = STATE(1477), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1477), - [sym_char_literal] = STATE(1477), - [sym_assignment_expression] = STATE(1477), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1477), - [sym_math_expression] = STATE(1477), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_relational_expression] = STATE(1477), - [sym_sizeof_expression] = STATE(1477), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1477), - [sym_concatenated_string] = STATE(1477), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4025), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4025), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4027), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4023), + [sym_concatenated_string] = STATE(1493), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1493), + [sym_math_expression] = STATE(1493), + [sym_cast_expression] = STATE(1493), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1493), + [sym_assignment_expression] = STATE(1493), + [sym_relational_expression] = STATE(1493), + [sym_shift_expression] = STATE(1493), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1493), + [sym_bitwise_expression] = STATE(1493), + [sym_equality_expression] = STATE(1493), + [sym_sizeof_expression] = STATE(1493), + [sym_compound_literal_expression] = STATE(1493), + [sym_parenthesized_expression] = STATE(1493), + [sym_char_literal] = STATE(1493), + [sym_null] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4030), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4028), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1396] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1397] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1479), - [sym_logical_expression] = STATE(1479), - [sym_bitwise_expression] = STATE(1479), - [sym_cast_expression] = STATE(1479), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1479), - [sym_char_literal] = STATE(1479), - [sym_assignment_expression] = STATE(1479), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1479), - [sym_math_expression] = STATE(1479), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1479), - [sym_equality_expression] = STATE(1479), - [sym_relational_expression] = STATE(1479), - [sym_sizeof_expression] = STATE(1479), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1479), - [sym_concatenated_string] = STATE(1479), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4029), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4029), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4031), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4033), - [sym_false] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(207), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1398] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), }, [1399] = { - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DASH_DASH] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(4037), - [anon_sym_PLUS_EQ] = ACTIONS(121), - [anon_sym_CARET_EQ] = ACTIONS(121), - [anon_sym_LT_LT_EQ] = ACTIONS(121), - [anon_sym_QMARK] = ACTIONS(115), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), - [anon_sym_PIPE_PIPE] = ACTIONS(115), - [anon_sym_PERCENT] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(115), - [anon_sym_DASH_EQ] = ACTIONS(121), - [anon_sym_SLASH_EQ] = ACTIONS(121), - [anon_sym_GT_GT_EQ] = ACTIONS(121), - [anon_sym_STAR_EQ] = ACTIONS(121), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_LT_LT] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(115), - [anon_sym_PIPE_EQ] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(121), - [anon_sym_AMP_EQ] = ACTIONS(121), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_GT_GT] = ACTIONS(125), - [anon_sym_DASH_GT] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(115), + [aux_sym_for_statement_repeat1] = STATE(1496), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1400] = { - [anon_sym_LPAREN2] = ACTIONS(4039), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [aux_sym_preproc_elif_token1] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [aux_sym_preproc_else_token1] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1259), + [sym_true] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), }, [1401] = { - [sym_parenthesized_expression] = STATE(1483), - [anon_sym_LPAREN2] = ACTIONS(177), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1402] = { - [sym_parenthesized_expression] = STATE(1484), - [anon_sym_LPAREN2] = ACTIONS(177), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4036), }, [1403] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [sym_null] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [anon_sym_unsigned] = ACTIONS(2691), + [anon_sym_volatile] = ACTIONS(2691), + [anon_sym_short] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2689), + [sym_null] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2691), + [anon_sym_do] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2691), + [sym_preproc_directive] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2689), + [anon_sym_typedef] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2691), + [sym_primitive_type] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), + [aux_sym_preproc_include_token1] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_restrict] = ACTIONS(2691), + [anon_sym_register] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2691), + [anon_sym_signed] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_long] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [anon_sym_auto] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2691), }, [1404] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_null] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2824), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym__Atomic] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [sym_number_literal] = ACTIONS(2824), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_auto] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), }, [1405] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1487), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_type_definition_repeat2] = STATE(854), + [anon_sym_COMMA] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(4038), }, [1406] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1488), - [sym_logical_expression] = STATE(1488), - [sym_bitwise_expression] = STATE(1488), - [sym_cast_expression] = STATE(1488), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1488), - [sym_char_literal] = STATE(1488), - [sym_assignment_expression] = STATE(1488), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1488), - [sym_math_expression] = STATE(1488), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1488), - [sym_equality_expression] = STATE(1488), - [sym_relational_expression] = STATE(1488), - [sym_sizeof_expression] = STATE(1488), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1488), - [sym_concatenated_string] = STATE(1488), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4045), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4045), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4047), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4045), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4043), + [sym_while_statement] = STATE(1499), + [sym_continue_statement] = STATE(1499), + [sym_goto_statement] = STATE(1499), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1499), + [sym_expression_statement] = STATE(1499), + [sym_if_statement] = STATE(1499), + [sym_do_statement] = STATE(1499), + [sym_for_statement] = STATE(1499), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1499), + [sym_return_statement] = STATE(1499), + [sym_break_statement] = STATE(1499), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1499), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1407] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1501), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1408] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1491), - [sym_logical_expression] = STATE(1491), - [sym_bitwise_expression] = STATE(1491), - [sym_cast_expression] = STATE(1491), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1491), - [sym_char_literal] = STATE(1491), - [sym_assignment_expression] = STATE(1491), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1491), - [sym_math_expression] = STATE(1491), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1491), - [sym_equality_expression] = STATE(1491), - [sym_relational_expression] = STATE(1491), - [sym_sizeof_expression] = STATE(1491), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1491), - [sym_concatenated_string] = STATE(1491), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4051), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4051), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4053), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4055), - [sym_false] = ACTIONS(4051), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(1502), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1502), + [sym_math_expression] = STATE(1502), + [sym_cast_expression] = STATE(1502), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1502), + [sym_assignment_expression] = STATE(1502), + [sym_relational_expression] = STATE(1502), + [sym_shift_expression] = STATE(1502), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1502), + [sym_bitwise_expression] = STATE(1502), + [sym_equality_expression] = STATE(1502), + [sym_sizeof_expression] = STATE(1502), + [sym_compound_literal_expression] = STATE(1502), + [sym_parenthesized_expression] = STATE(1502), + [sym_char_literal] = STATE(1502), + [sym_null] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4042), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1409] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4057), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1410] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(4059), - [anon_sym_case] = ACTIONS(1242), - [sym_null] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2859), + [anon_sym_unsigned] = ACTIONS(2859), + [anon_sym_volatile] = ACTIONS(2859), + [anon_sym_short] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2857), + [sym_null] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [sym_preproc_directive] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_LPAREN2] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2859), + [sym_primitive_type] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), + [aux_sym_preproc_include_token1] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_restrict] = ACTIONS(2859), + [anon_sym_register] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_long] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [anon_sym_auto] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2859), + [anon_sym___attribute__] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), }, [1411] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), - [anon_sym_long] = ACTIONS(3399), - [anon_sym__Atomic] = ACTIONS(3399), - [sym_primitive_type] = ACTIONS(3399), - [anon_sym_auto] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_inline] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3399), - [aux_sym_preproc_else_token1] = ACTIONS(3399), - [aux_sym_preproc_if_token2] = ACTIONS(3399), - [sym_preproc_directive] = ACTIONS(3399), - [anon_sym_unsigned] = ACTIONS(3399), - [aux_sym_preproc_if_token1] = ACTIONS(3399), - [anon_sym_short] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_restrict] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), - [aux_sym_preproc_elif_token1] = ACTIONS(3399), - [aux_sym_preproc_def_token1] = ACTIONS(3399), - [anon_sym_signed] = ACTIONS(3399), - [anon_sym_register] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2861), + [sym_null] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2861), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_auto] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), }, [1412] = { - [aux_sym_preproc_if_token2] = ACTIONS(4061), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [1413] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_auto] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2910), - [aux_sym_preproc_if_token2] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), + [sym_concatenated_string] = STATE(1506), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1506), + [sym_math_expression] = STATE(1506), + [sym_cast_expression] = STATE(1506), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1506), + [sym_assignment_expression] = STATE(1506), + [sym_relational_expression] = STATE(1506), + [sym_shift_expression] = STATE(1506), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1506), + [sym_bitwise_expression] = STATE(1506), + [sym_equality_expression] = STATE(1506), + [sym_sizeof_expression] = STATE(1506), + [sym_compound_literal_expression] = STATE(1506), + [sym_parenthesized_expression] = STATE(1506), + [sym_char_literal] = STATE(1506), + [sym_null] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4050), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4054), + [sym_true] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1414] = { - [aux_sym_preproc_if_token2] = ACTIONS(4063), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1415] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1496), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1496), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(4065), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_null] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2877), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2877), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_auto] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), }, [1416] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_null] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [anon_sym_auto] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), }, [1417] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), - [anon_sym_long] = ACTIONS(2924), - [anon_sym__Atomic] = ACTIONS(2924), - [sym_primitive_type] = ACTIONS(2924), - [anon_sym_auto] = ACTIONS(2924), - [anon_sym_volatile] = ACTIONS(2924), - [anon_sym_inline] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2924), - [aux_sym_preproc_if_token2] = ACTIONS(2924), - [sym_preproc_directive] = ACTIONS(2924), - [anon_sym_unsigned] = ACTIONS(2924), - [aux_sym_preproc_if_token1] = ACTIONS(2924), - [anon_sym_short] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_restrict] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), - [aux_sym_preproc_def_token1] = ACTIONS(2924), - [anon_sym_signed] = ACTIONS(2924), - [anon_sym_register] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_sizeof] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_null] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3037), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym__Atomic] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [aux_sym_preproc_include_token1] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3037), + [sym_number_literal] = ACTIONS(3037), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), }, [1418] = { - [aux_sym_preproc_if_token2] = ACTIONS(4067), - [sym_comment] = ACTIONS(3), + [sym_null] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3468), + [aux_sym_preproc_if_token2] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym__Atomic] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [aux_sym_preproc_elif_token1] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [aux_sym_preproc_else_token1] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3470), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_AMP] = ACTIONS(3470), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [anon_sym_auto] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), }, [1419] = { - [sym_macro_type_specifier] = STATE(305), - [sym_preproc_def] = STATE(1114), - [sym__type_specifier] = STATE(305), - [aux_sym__declaration_specifiers_repeat1] = STATE(306), - [sym_sized_type_specifier] = STATE(305), - [sym_preproc_function_def] = STATE(1114), - [sym__field_declaration_list_item] = STATE(1114), - [sym_storage_class_specifier] = STATE(306), - [sym_type_qualifier] = STATE(306), - [sym_preproc_else_in_field_declaration_list] = STATE(1498), - [sym_union_specifier] = STATE(305), - [sym_preproc_elif_in_field_declaration_list] = STATE(1498), - [sym_struct_specifier] = STATE(305), - [sym_preproc_call] = STATE(1114), - [sym_enum_specifier] = STATE(305), - [aux_sym_sized_type_specifier_repeat1] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(1114), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1114), - [sym_field_declaration] = STATE(1114), - [sym__declaration_specifiers] = STATE(852), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2115), - [sym_identifier] = ACTIONS(157), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_long] = ACTIONS(623), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [anon_sym_short] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(4069), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2115), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_register] = ACTIONS(27), - [anon_sym_signed] = ACTIONS(623), - [anon_sym_const] = ACTIONS(11), + [sym_null] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3476), + [aux_sym_preproc_if_token2] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3476), + [sym_number_literal] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3476), + [aux_sym_preproc_elif_token1] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [aux_sym_preproc_else_token1] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3476), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [aux_sym_preproc_include_token1] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), }, [1420] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(4071), + [sym_while_statement] = STATE(1508), + [sym_continue_statement] = STATE(1508), + [sym_goto_statement] = STATE(1508), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1508), + [sym_expression_statement] = STATE(1508), + [sym_if_statement] = STATE(1508), + [sym_do_statement] = STATE(1508), + [sym_for_statement] = STATE(1508), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1508), + [sym_return_statement] = STATE(1508), + [sym_break_statement] = STATE(1508), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1508), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1421] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), }, [1422] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(4073), - [sym_preproc_arg] = ACTIONS(4075), + [aux_sym_for_statement_repeat1] = STATE(1510), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4058), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1423] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), - [anon_sym_long] = ACTIONS(2952), - [anon_sym__Atomic] = ACTIONS(2952), - [sym_primitive_type] = ACTIONS(2952), - [anon_sym_auto] = ACTIONS(2952), - [anon_sym_volatile] = ACTIONS(2952), - [anon_sym_inline] = ACTIONS(2952), - [anon_sym_extern] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2952), - [aux_sym_preproc_if_token2] = ACTIONS(2952), - [sym_preproc_directive] = ACTIONS(2952), - [anon_sym_unsigned] = ACTIONS(2952), - [aux_sym_preproc_if_token1] = ACTIONS(2952), - [anon_sym_short] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_restrict] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), - [aux_sym_preproc_def_token1] = ACTIONS(2952), - [anon_sym_signed] = ACTIONS(2952), - [anon_sym_register] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), + [sym_concatenated_string] = STATE(1511), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1511), + [sym_math_expression] = STATE(1511), + [sym_cast_expression] = STATE(1511), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1511), + [sym_assignment_expression] = STATE(1511), + [sym_relational_expression] = STATE(1511), + [sym_shift_expression] = STATE(1511), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1511), + [sym_bitwise_expression] = STATE(1511), + [sym_equality_expression] = STATE(1511), + [sym_sizeof_expression] = STATE(1511), + [sym_compound_literal_expression] = STATE(1511), + [sym_parenthesized_expression] = STATE(1511), + [sym_char_literal] = STATE(1511), + [sym_null] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4060), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1424] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4077), + [sym_while_statement] = STATE(1285), + [sym_continue_statement] = STATE(1285), + [sym_goto_statement] = STATE(1285), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1285), + [sym_expression_statement] = STATE(1285), + [sym_if_statement] = STATE(1285), + [sym_do_statement] = STATE(1285), + [sym_for_statement] = STATE(1285), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1285), + [sym_return_statement] = STATE(1285), + [sym_break_statement] = STATE(1285), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1285), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1425] = { - [sym_bitfield_clause] = STATE(1503), - [aux_sym_field_declaration_repeat1] = STATE(1130), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(4077), + [sym_concatenated_string] = STATE(1513), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1513), + [sym_math_expression] = STATE(1513), + [sym_cast_expression] = STATE(1513), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1513), + [sym_assignment_expression] = STATE(1513), + [sym_relational_expression] = STATE(1513), + [sym_shift_expression] = STATE(1513), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1513), + [sym_bitwise_expression] = STATE(1513), + [sym_equality_expression] = STATE(1513), + [sym_sizeof_expression] = STATE(1513), + [sym_compound_literal_expression] = STATE(1513), + [sym_parenthesized_expression] = STATE(1513), + [sym_char_literal] = STATE(1513), + [sym_null] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4064), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1426] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3421), - [anon_sym_long] = ACTIONS(3421), - [anon_sym__Atomic] = ACTIONS(3421), - [sym_primitive_type] = ACTIONS(3421), - [anon_sym_auto] = ACTIONS(3421), - [anon_sym_volatile] = ACTIONS(3421), - [anon_sym_inline] = ACTIONS(3421), - [anon_sym_extern] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3421), - [aux_sym_preproc_else_token1] = ACTIONS(3421), - [aux_sym_preproc_if_token2] = ACTIONS(3421), - [sym_preproc_directive] = ACTIONS(3421), - [anon_sym_unsigned] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [anon_sym_short] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_restrict] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3421), - [aux_sym_preproc_elif_token1] = ACTIONS(3421), - [aux_sym_preproc_def_token1] = ACTIONS(3421), - [anon_sym_signed] = ACTIONS(3421), - [anon_sym_register] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1427] = { - [aux_sym_preproc_if_token2] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), + [sym_concatenated_string] = STATE(1515), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1515), + [sym_math_expression] = STATE(1515), + [sym_cast_expression] = STATE(1515), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_relational_expression] = STATE(1515), + [sym_shift_expression] = STATE(1515), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1515), + [sym_bitwise_expression] = STATE(1515), + [sym_equality_expression] = STATE(1515), + [sym_sizeof_expression] = STATE(1515), + [sym_compound_literal_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_char_literal] = STATE(1515), + [sym_null] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4072), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4070), + [sym_true] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1428] = { - [aux_sym_preproc_if_token2] = ACTIONS(4081), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_EQ] = ACTIONS(1812), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(4088), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1429] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [aux_sym_preproc_else_token1] = ACTIONS(2222), - [aux_sym_preproc_if_token2] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [aux_sym_preproc_elif_token1] = ACTIONS(2222), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(1267), + [sym_null] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1430] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_else_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token2] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [anon_sym_unsigned] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [aux_sym_preproc_elif_token1] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4092), }, [1431] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(4083), + [aux_sym_concatenated_string_repeat1] = STATE(1431), + [sym_string_literal] = STATE(1431), + [anon_sym_PERCENT] = ACTIONS(1489), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_DASH_GT] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1487), }, [1432] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_auto] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1433] = { + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4085), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1434] = { - [anon_sym_LPAREN2] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(4087), - [anon_sym_LBRACK] = ACTIONS(4087), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4087), - [anon_sym_COMMA] = ACTIONS(4087), - [anon_sym_SEMI] = ACTIONS(4087), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1435] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1500), + [anon_sym_AMP_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1498), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_LT_LT_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_CARET_EQ] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_GT_GT_EQ] = ACTIONS(1500), + [anon_sym_BANG_EQ] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(326), }, [1436] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4089), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1437] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1508), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1438] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1439] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1510), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4091), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1440] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1511), - [sym_logical_expression] = STATE(1511), - [sym_bitwise_expression] = STATE(1511), - [sym_cast_expression] = STATE(1511), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1511), - [sym_char_literal] = STATE(1511), - [sym_assignment_expression] = STATE(1511), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1511), - [sym_math_expression] = STATE(1511), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1511), - [sym_equality_expression] = STATE(1511), - [sym_relational_expression] = STATE(1511), - [sym_sizeof_expression] = STATE(1511), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1511), - [sym_concatenated_string] = STATE(1511), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4093), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4093), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4095), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4093), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4091), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1564), + [anon_sym_AMP_EQ] = ACTIONS(1564), + [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1564), + [anon_sym_LT_LT_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(1564), + [anon_sym_CARET_EQ] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(1564), + [anon_sym_GT_GT_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1441] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_EQ_EQ] = ACTIONS(1608), + [anon_sym_GT_EQ] = ACTIONS(1610), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(326), }, [1442] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(4098), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1443] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_PERCENT] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(4102), + [anon_sym_AMP_EQ] = ACTIONS(4102), + [anon_sym_DASH_EQ] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_PLUS_EQ] = ACTIONS(4102), + [anon_sym_STAR_EQ] = ACTIONS(4102), + [anon_sym_LT_LT_EQ] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_CARET_EQ] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_SLASH_EQ] = ACTIONS(4102), + [anon_sym_GT_GT_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_PIPE_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4102), }, [1444] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1514), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_concatenated_string] = STATE(1312), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1312), + [sym_math_expression] = STATE(1312), + [sym_cast_expression] = STATE(1312), + [aux_sym_initializer_pair_repeat1] = STATE(822), + [sym_field_expression] = STATE(817), + [sym_subscript_designator] = STATE(822), + [sym_field_designator] = STATE(822), + [sym_conditional_expression] = STATE(1312), + [sym_assignment_expression] = STATE(1312), + [sym_relational_expression] = STATE(1312), + [sym_shift_expression] = STATE(1312), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_initializer_list] = STATE(1311), + [sym_initializer_pair] = STATE(1311), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1312), + [sym_bitwise_expression] = STATE(1312), + [sym_equality_expression] = STATE(1312), + [sym_sizeof_expression] = STATE(1312), + [sym_compound_literal_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_char_literal] = STATE(1312), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_null] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(3402), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4099), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [sym_false] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2065), }, [1445] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1518), + [sym_pointer_expression] = STATE(817), + [sym_logical_expression] = STATE(1518), + [sym_math_expression] = STATE(1518), + [sym_cast_expression] = STATE(1518), + [sym_field_expression] = STATE(817), + [sym_conditional_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_relational_expression] = STATE(1518), + [sym_shift_expression] = STATE(1518), + [sym_subscript_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_string_literal] = STATE(824), + [sym__expression] = STATE(1518), + [sym_bitwise_expression] = STATE(1518), + [sym_equality_expression] = STATE(1518), + [sym_sizeof_expression] = STATE(1518), + [sym_compound_literal_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_char_literal] = STATE(1518), + [sym_null] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(2045), + [sym_number_literal] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(4104), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [sym_true] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2039), }, [1446] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1516), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_type_qualifier] = STATE(1446), + [aux_sym_type_definition_repeat1] = STATE(1446), + [sym_identifier] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), }, [1447] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1517), - [sym_logical_expression] = STATE(1517), - [sym_bitwise_expression] = STATE(1517), - [sym_cast_expression] = STATE(1517), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1517), - [sym_char_literal] = STATE(1517), - [sym_assignment_expression] = STATE(1517), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1517), - [sym_math_expression] = STATE(1517), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1517), - [sym_equality_expression] = STATE(1517), - [sym_relational_expression] = STATE(1517), - [sym_sizeof_expression] = STATE(1517), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1517), - [sym_concatenated_string] = STATE(1517), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4103), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4103), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4105), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4103), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4101), + [sym_attribute_specifier] = STATE(1447), + [aux_sym_function_declarator_repeat1] = STATE(1447), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), }, [1448] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4107), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(4108), + [sym_null] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_default] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [sym_true] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [sym_identifier] = ACTIONS(4108), + [ts_builtin_sym_end] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), }, [1449] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(4109), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_EQ_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3505), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3511), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1450] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(4111), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_EQ_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3537), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3533), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_CARET] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(3067), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), }, [1451] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(410), - [sym_logical_expression] = STATE(410), - [sym_bitwise_expression] = STATE(410), - [sym_cast_expression] = STATE(410), - [sym_field_expression] = STATE(410), - [sym_compound_literal_expression] = STATE(410), - [sym_char_literal] = STATE(410), - [sym_assignment_expression] = STATE(410), - [sym_pointer_expression] = STATE(410), - [sym_shift_expression] = STATE(410), - [sym_math_expression] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_conditional_expression] = STATE(410), - [sym_equality_expression] = STATE(410), - [sym_relational_expression] = STATE(410), - [sym_sizeof_expression] = STATE(410), - [sym_subscript_expression] = STATE(410), - [sym_parenthesized_expression] = STATE(410), - [sym_initializer_list] = STATE(411), - [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(2107), - [anon_sym_CARET_EQ] = ACTIONS(2107), - [anon_sym_LT_LT_EQ] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_GT_EQ] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(4113), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3947), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(2107), - [anon_sym_SLASH_EQ] = ACTIONS(2107), - [anon_sym_GT_GT_EQ] = ACTIONS(2107), - [anon_sym_STAR_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_EQ] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2107), - [anon_sym_AMP_EQ] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_DASH_GT] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1452] = { - [sym_string_literal] = STATE(973), - [sym__expression] = STATE(1519), - [sym_logical_expression] = STATE(1519), - [sym_bitwise_expression] = STATE(1519), - [sym_cast_expression] = STATE(1519), - [sym_field_expression] = STATE(1519), - [sym_compound_literal_expression] = STATE(1519), - [sym_char_literal] = STATE(1519), - [sym_assignment_expression] = STATE(1519), - [sym_pointer_expression] = STATE(1519), - [sym_shift_expression] = STATE(1519), - [sym_math_expression] = STATE(1519), - [sym_call_expression] = STATE(1519), - [sym_conditional_expression] = STATE(1519), - [sym_equality_expression] = STATE(1519), - [sym_relational_expression] = STATE(1519), - [sym_sizeof_expression] = STATE(1519), - [sym_subscript_expression] = STATE(1519), - [sym_parenthesized_expression] = STATE(1519), - [sym_concatenated_string] = STATE(1519), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [sym_identifier] = ACTIONS(4115), - [sym_true] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_sizeof] = ACTIONS(2453), - [sym_null] = ACTIONS(4115), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2457), - [sym_number_literal] = ACTIONS(4117), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [sym_false] = ACTIONS(4115), - [anon_sym_AMP] = ACTIONS(1732), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), }, [1453] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1522), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1454] = { - [anon_sym_DASH_DASH] = ACTIONS(4119), - [anon_sym_default] = ACTIONS(4121), - [sym_identifier] = ACTIONS(4121), - [anon_sym__Atomic] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4121), - [anon_sym_typedef] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4121), - [anon_sym_union] = ACTIONS(4121), - [anon_sym_unsigned] = ACTIONS(4121), - [anon_sym_short] = ACTIONS(4121), - [anon_sym_do] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4121), - [sym_true] = ACTIONS(4121), - [sym_primitive_type] = ACTIONS(4121), - [anon_sym_for] = ACTIONS(4121), - [sym_preproc_directive] = ACTIONS(4121), - [aux_sym_preproc_if_token1] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [sym_false] = ACTIONS(4121), - [anon_sym_enum] = ACTIONS(4121), - [anon_sym_return] = ACTIONS(4121), - [anon_sym_continue] = ACTIONS(4121), - [aux_sym_preproc_include_token1] = ACTIONS(4121), - [anon_sym_auto] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_case] = ACTIONS(4121), - [sym_null] = ACTIONS(4121), - [anon_sym_struct] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4121), - [anon_sym_goto] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4121), - [anon_sym_register] = ACTIONS(4121), - [anon_sym_const] = ACTIONS(4121), + [sym_concatenated_string] = STATE(1523), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1523), + [sym_math_expression] = STATE(1523), + [sym_cast_expression] = STATE(1523), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1523), + [sym_assignment_expression] = STATE(1523), + [sym_relational_expression] = STATE(1523), + [sym_shift_expression] = STATE(1523), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1523), + [sym_bitwise_expression] = STATE(1523), + [sym_equality_expression] = STATE(1523), + [sym_sizeof_expression] = STATE(1523), + [sym_compound_literal_expression] = STATE(1523), + [sym_parenthesized_expression] = STATE(1523), + [sym_char_literal] = STATE(1523), + [sym_null] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4116), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1455] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(414), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1525), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1525), + [sym_math_expression] = STATE(1525), + [sym_cast_expression] = STATE(1525), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1525), + [sym_assignment_expression] = STATE(1525), + [sym_relational_expression] = STATE(1525), + [sym_shift_expression] = STATE(1525), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1525), + [sym_bitwise_expression] = STATE(1525), + [sym_equality_expression] = STATE(1525), + [sym_sizeof_expression] = STATE(1525), + [sym_compound_literal_expression] = STATE(1525), + [sym_parenthesized_expression] = STATE(1525), + [sym_char_literal] = STATE(1525), + [sym_null] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4120), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4124), + [sym_true] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1456] = { - [anon_sym_DASH_DASH] = ACTIONS(3628), - [sym_identifier] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3628), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_long] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [anon_sym_auto] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3628), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1457] = { - [sym_do_statement] = STATE(1521), - [sym_goto_statement] = STATE(1521), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1521), - [sym_switch_statement] = STATE(1521), - [sym_for_statement] = STATE(1521), - [sym_return_statement] = STATE(1521), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1521), - [sym_continue_statement] = STATE(1521), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1521), - [sym_labeled_statement] = STATE(1521), - [sym_expression_statement] = STATE(1521), - [sym_while_statement] = STATE(1521), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_parenthesized_expression] = STATE(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1458] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(4128), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [1459] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1523), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_parenthesized_expression] = STATE(1529), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4123), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LPAREN2] = ACTIONS(205), }, [1460] = { - [anon_sym_LPAREN2] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3233), - [anon_sym__Atomic] = ACTIONS(3233), - [sym_primitive_type] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [aux_sym_preproc_if_token2] = ACTIONS(3233), - [sym_preproc_directive] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_restrict] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3233), - [aux_sym_preproc_include_token1] = ACTIONS(3233), - [anon_sym_auto] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_inline] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_union] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_short] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym_null] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(4130), }, [1461] = { - [sym_do_statement] = STATE(1524), - [sym_goto_statement] = STATE(1524), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1524), - [sym_switch_statement] = STATE(1524), - [sym_for_statement] = STATE(1524), - [sym_return_statement] = STATE(1524), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1524), - [sym_continue_statement] = STATE(1524), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1524), - [sym_labeled_statement] = STATE(1524), - [sym_expression_statement] = STATE(1524), - [sym_while_statement] = STATE(1524), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_false] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [1462] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_PERCENT] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(217), + [anon_sym_AMP_EQ] = ACTIONS(217), + [anon_sym_DASH_EQ] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(215), + [anon_sym_CARET] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_GT_GT] = ACTIONS(215), + [anon_sym_SLASH] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_PLUS_EQ] = ACTIONS(217), + [anon_sym_STAR_EQ] = ACTIONS(217), + [anon_sym_LT_LT_EQ] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_CARET_EQ] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(221), + [anon_sym_SLASH_EQ] = ACTIONS(217), + [anon_sym_GT_GT_EQ] = ACTIONS(217), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PIPE] = ACTIONS(215), + [anon_sym_PIPE_EQ] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(221), }, [1463] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1526), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4125), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1464] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1527), - [sym_logical_expression] = STATE(1527), - [sym_bitwise_expression] = STATE(1527), - [sym_cast_expression] = STATE(1527), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1527), - [sym_char_literal] = STATE(1527), - [sym_assignment_expression] = STATE(1527), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1527), - [sym_math_expression] = STATE(1527), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1527), - [sym_equality_expression] = STATE(1527), - [sym_relational_expression] = STATE(1527), - [sym_sizeof_expression] = STATE(1527), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1527), - [sym_concatenated_string] = STATE(1527), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4127), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4127), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4127), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4125), + [aux_sym_for_statement_repeat1] = STATE(1533), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1465] = { - [anon_sym_LPAREN2] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_long] = ACTIONS(3319), - [anon_sym__Atomic] = ACTIONS(3319), - [sym_primitive_type] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_identifier] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [aux_sym_preproc_if_token2] = ACTIONS(3319), - [sym_preproc_directive] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_restrict] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_typedef] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_signed] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [sym_number_literal] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3319), - [aux_sym_preproc_include_token1] = ACTIONS(3319), - [anon_sym_auto] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_inline] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_unsigned] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_short] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3317), - [sym_null] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3317), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_register] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), + [sym_concatenated_string] = STATE(1534), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1534), + [sym_math_expression] = STATE(1534), + [sym_cast_expression] = STATE(1534), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1534), + [sym_assignment_expression] = STATE(1534), + [sym_relational_expression] = STATE(1534), + [sym_shift_expression] = STATE(1534), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1534), + [sym_bitwise_expression] = STATE(1534), + [sym_equality_expression] = STATE(1534), + [sym_sizeof_expression] = STATE(1534), + [sym_compound_literal_expression] = STATE(1534), + [sym_parenthesized_expression] = STATE(1534), + [sym_char_literal] = STATE(1534), + [sym_null] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4136), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1466] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1529), - [sym_logical_expression] = STATE(1529), - [sym_bitwise_expression] = STATE(1529), - [sym_cast_expression] = STATE(1529), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1529), - [sym_char_literal] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1529), - [sym_math_expression] = STATE(1529), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1529), - [sym_equality_expression] = STATE(1529), - [sym_relational_expression] = STATE(1529), - [sym_sizeof_expression] = STATE(1529), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1529), - [sym_concatenated_string] = STATE(1529), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4131), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4131), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4133), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4131), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4135), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1467] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4137), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(4142), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), }, [1468] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1531), - [sym_logical_expression] = STATE(1531), - [sym_bitwise_expression] = STATE(1531), - [sym_cast_expression] = STATE(1531), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1531), - [sym_char_literal] = STATE(1531), - [sym_assignment_expression] = STATE(1531), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1531), - [sym_math_expression] = STATE(1531), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1531), - [sym_equality_expression] = STATE(1531), - [sym_relational_expression] = STATE(1531), - [sym_sizeof_expression] = STATE(1531), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1531), - [sym_concatenated_string] = STATE(1531), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4139), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4139), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4137), - [sym_false] = ACTIONS(4139), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(1538), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1538), + [sym_math_expression] = STATE(1538), + [sym_cast_expression] = STATE(1538), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1538), + [sym_assignment_expression] = STATE(1538), + [sym_relational_expression] = STATE(1538), + [sym_shift_expression] = STATE(1538), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1538), + [sym_bitwise_expression] = STATE(1538), + [sym_equality_expression] = STATE(1538), + [sym_sizeof_expression] = STATE(1538), + [sym_compound_literal_expression] = STATE(1538), + [sym_parenthesized_expression] = STATE(1538), + [sym_char_literal] = STATE(1538), + [sym_null] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4144), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4148), + [sym_true] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1469] = { - [sym_do_statement] = STATE(1379), - [sym_goto_statement] = STATE(1379), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1379), - [sym_switch_statement] = STATE(1379), - [sym_for_statement] = STATE(1379), - [sym_return_statement] = STATE(1379), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1379), - [sym_continue_statement] = STATE(1379), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1379), - [sym_labeled_statement] = STATE(1379), - [sym_expression_statement] = STATE(1379), - [sym_while_statement] = STATE(1379), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1470] = { - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [sym_true] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [aux_sym_preproc_if_token2] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym_null] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3543), + [anon_sym_CARET] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(3541), + [anon_sym_PIPE_PIPE] = ACTIONS(3551), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(326), }, [1471] = { - [sym_do_statement] = STATE(1364), - [sym_goto_statement] = STATE(1364), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1364), - [sym_switch_statement] = STATE(1364), - [sym_for_statement] = STATE(1364), - [sym_return_statement] = STATE(1364), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1364), - [sym_continue_statement] = STATE(1364), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1364), - [sym_labeled_statement] = STATE(1364), - [sym_expression_statement] = STATE(1364), - [sym_while_statement] = STATE(1364), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(3577), + [anon_sym_GT_EQ] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(3579), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3567), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(326), }, [1472] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1533), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1473] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1534), - [sym_logical_expression] = STATE(1534), - [sym_bitwise_expression] = STATE(1534), - [sym_cast_expression] = STATE(1534), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1534), - [sym_char_literal] = STATE(1534), - [sym_assignment_expression] = STATE(1534), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1534), - [sym_math_expression] = STATE(1534), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_sizeof_expression] = STATE(1534), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1534), - [sym_concatenated_string] = STATE(1534), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4145), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4145), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4147), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4145), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4143), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), }, [1474] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1475] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), }, [1476] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4151), + [aux_sym_for_statement_repeat1] = STATE(1542), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1477] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1537), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4151), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1543), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1543), + [sym_math_expression] = STATE(1543), + [sym_cast_expression] = STATE(1543), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1543), + [sym_assignment_expression] = STATE(1543), + [sym_relational_expression] = STATE(1543), + [sym_shift_expression] = STATE(1543), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1543), + [sym_bitwise_expression] = STATE(1543), + [sym_equality_expression] = STATE(1543), + [sym_sizeof_expression] = STATE(1543), + [sym_compound_literal_expression] = STATE(1543), + [sym_parenthesized_expression] = STATE(1543), + [sym_char_literal] = STATE(1543), + [sym_null] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4160), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4160), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1478] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1539), - [sym_logical_expression] = STATE(1539), - [sym_bitwise_expression] = STATE(1539), - [sym_cast_expression] = STATE(1539), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1539), - [sym_char_literal] = STATE(1539), - [sym_assignment_expression] = STATE(1539), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1539), - [sym_math_expression] = STATE(1539), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1539), - [sym_equality_expression] = STATE(1539), - [sym_relational_expression] = STATE(1539), - [sym_sizeof_expression] = STATE(1539), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1539), - [sym_concatenated_string] = STATE(1539), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4153), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4153), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4155), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4153), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym_auto] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), }, [1479] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3209), + [anon_sym_union] = ACTIONS(3209), + [anon_sym_unsigned] = ACTIONS(3209), + [anon_sym_volatile] = ACTIONS(3209), + [anon_sym_short] = ACTIONS(3209), + [anon_sym_static] = ACTIONS(3209), + [anon_sym_restrict] = ACTIONS(3209), + [anon_sym_register] = ACTIONS(3209), + [anon_sym_extern] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3209), + [sym_preproc_directive] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [anon_sym_long] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_struct] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3209), + [aux_sym_preproc_def_token1] = ACTIONS(3209), + [anon_sym__Atomic] = ACTIONS(3209), + [anon_sym_auto] = ACTIONS(3209), + [sym_primitive_type] = ACTIONS(3209), + [anon_sym_inline] = ACTIONS(3209), + [anon_sym___attribute__] = ACTIONS(3209), }, [1480] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1541), - [sym_logical_expression] = STATE(1541), - [sym_bitwise_expression] = STATE(1541), - [sym_cast_expression] = STATE(1541), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1541), - [sym_char_literal] = STATE(1541), - [sym_assignment_expression] = STATE(1541), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1541), - [sym_math_expression] = STATE(1541), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1541), - [sym_equality_expression] = STATE(1541), - [sym_relational_expression] = STATE(1541), - [sym_sizeof_expression] = STATE(1541), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1541), - [sym_concatenated_string] = STATE(1541), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4161), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4161), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4163), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4159), - [sym_false] = ACTIONS(4161), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), }, [1481] = { - [sym_do_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), + [anon_sym_union] = ACTIONS(3231), + [anon_sym_unsigned] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_short] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_restrict] = ACTIONS(3231), + [anon_sym_register] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3231), + [sym_preproc_directive] = ACTIONS(3231), + [anon_sym_signed] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3231), + [anon_sym_long] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), + [aux_sym_preproc_def_token1] = ACTIONS(3231), + [anon_sym__Atomic] = ACTIONS(3231), + [anon_sym_auto] = ACTIONS(3231), + [sym_primitive_type] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym___attribute__] = ACTIONS(3231), }, [1482] = { - [sym__expression] = STATE(1543), - [sym_logical_expression] = STATE(1543), - [sym_bitwise_expression] = STATE(1543), - [sym_cast_expression] = STATE(1543), - [sym_declaration] = STATE(1542), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1543), - [sym_char_literal] = STATE(1543), - [sym_storage_class_specifier] = STATE(202), - [sym_type_qualifier] = STATE(202), - [sym_struct_specifier] = STATE(201), - [sym_union_specifier] = STATE(201), - [sym_conditional_expression] = STATE(1543), - [sym_equality_expression] = STATE(1543), - [sym_relational_expression] = STATE(1543), - [sym_sizeof_expression] = STATE(1543), - [sym__declaration_specifiers] = STATE(200), - [sym_parenthesized_expression] = STATE(1543), - [sym_subscript_expression] = STATE(90), - [sym_concatenated_string] = STATE(1543), - [sym_string_literal] = STATE(96), - [sym_macro_type_specifier] = STATE(201), - [sym__type_specifier] = STATE(201), - [aux_sym__declaration_specifiers_repeat1] = STATE(202), - [sym_sized_type_specifier] = STATE(201), - [sym_assignment_expression] = STATE(1543), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1543), - [sym_math_expression] = STATE(1543), - [sym_call_expression] = STATE(90), - [sym_enum_specifier] = STATE(201), - [aux_sym_sized_type_specifier_repeat1] = STATE(203), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(420), - [anon_sym__Atomic] = ACTIONS(11), - [sym_primitive_type] = ACTIONS(422), - [sym_true] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_static] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(11), - [sym_number_literal] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [sym_false] = ACTIONS(4165), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(426), - [anon_sym_auto] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(11), - [anon_sym_inline] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [anon_sym_union] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(61), - [sym_null] = ACTIONS(4165), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_unsigned] = ACTIONS(426), - [anon_sym_short] = ACTIONS(426), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_register] = ACTIONS(27), - [anon_sym_const] = ACTIONS(11), + [aux_sym_preproc_if_token2] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), }, [1483] = { - [sym_do_statement] = STATE(1544), - [sym_goto_statement] = STATE(1544), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1544), - [sym_switch_statement] = STATE(1544), - [sym_for_statement] = STATE(1544), - [sym_return_statement] = STATE(1544), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1544), - [sym_continue_statement] = STATE(1544), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1544), - [sym_labeled_statement] = STATE(1544), - [sym_expression_statement] = STATE(1544), - [sym_while_statement] = STATE(1544), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_restrict] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2257), + [sym_preproc_directive] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [aux_sym_preproc_if_token1] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [aux_sym_preproc_def_token1] = ACTIONS(2257), + [anon_sym__Atomic] = ACTIONS(2257), + [anon_sym_auto] = ACTIONS(2257), + [sym_primitive_type] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym___attribute__] = ACTIONS(2257), }, [1484] = { - [sym_do_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_restrict] = ACTIONS(2269), + [anon_sym_register] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(2269), + [sym_preproc_directive] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [aux_sym_preproc_if_token1] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [aux_sym_preproc_def_token1] = ACTIONS(2269), + [anon_sym__Atomic] = ACTIONS(2269), + [anon_sym_auto] = ACTIONS(2269), + [sym_primitive_type] = ACTIONS(2269), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym___attribute__] = ACTIONS(2269), }, [1485] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_comment] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(4168), }, [1486] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), + [anon_sym_union] = ACTIONS(3255), + [anon_sym_unsigned] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_short] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_restrict] = ACTIONS(3255), + [anon_sym_register] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3255), + [sym_preproc_directive] = ACTIONS(3255), + [anon_sym_signed] = ACTIONS(3255), + [aux_sym_preproc_if_token1] = ACTIONS(3255), + [anon_sym_long] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), + [aux_sym_preproc_def_token1] = ACTIONS(3255), + [anon_sym__Atomic] = ACTIONS(3255), + [anon_sym_auto] = ACTIONS(3255), + [sym_primitive_type] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym___attribute__] = ACTIONS(3255), }, [1487] = { - [aux_sym_for_statement_repeat1] = STATE(896), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4170), }, [1488] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1546), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3663), + [anon_sym_union] = ACTIONS(3663), + [anon_sym_unsigned] = ACTIONS(3663), + [anon_sym_volatile] = ACTIONS(3663), + [anon_sym_short] = ACTIONS(3663), + [anon_sym_static] = ACTIONS(3663), + [anon_sym_restrict] = ACTIONS(3663), + [anon_sym_register] = ACTIONS(3663), + [anon_sym_extern] = ACTIONS(3663), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3663), + [aux_sym_preproc_if_token2] = ACTIONS(3663), + [sym_preproc_directive] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3663), + [anon_sym_long] = ACTIONS(3663), + [anon_sym_enum] = ACTIONS(3663), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_struct] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3663), + [aux_sym_preproc_elif_token1] = ACTIONS(3663), + [aux_sym_preproc_def_token1] = ACTIONS(3663), + [anon_sym__Atomic] = ACTIONS(3663), + [anon_sym_auto] = ACTIONS(3663), + [sym_primitive_type] = ACTIONS(3663), + [anon_sym_inline] = ACTIONS(3663), + [anon_sym___attribute__] = ACTIONS(3663), }, [1489] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1547), - [sym_logical_expression] = STATE(1547), - [sym_bitwise_expression] = STATE(1547), - [sym_cast_expression] = STATE(1547), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1547), - [sym_char_literal] = STATE(1547), - [sym_assignment_expression] = STATE(1547), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1547), - [sym_math_expression] = STATE(1547), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1547), - [sym_equality_expression] = STATE(1547), - [sym_relational_expression] = STATE(1547), - [sym_sizeof_expression] = STATE(1547), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1547), - [sym_concatenated_string] = STATE(1547), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4173), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4173), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4175), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4173), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), }, [1490] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1549), - [sym_logical_expression] = STATE(1549), - [sym_bitwise_expression] = STATE(1549), - [sym_cast_expression] = STATE(1549), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1549), - [sym_char_literal] = STATE(1549), - [sym_assignment_expression] = STATE(1549), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1549), - [sym_math_expression] = STATE(1549), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1549), - [sym_equality_expression] = STATE(1549), - [sym_relational_expression] = STATE(1549), - [sym_sizeof_expression] = STATE(1549), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1549), - [sym_concatenated_string] = STATE(1549), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4177), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4177), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4179), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3671), + [anon_sym_union] = ACTIONS(3671), + [anon_sym_unsigned] = ACTIONS(3671), + [anon_sym_volatile] = ACTIONS(3671), + [anon_sym_short] = ACTIONS(3671), + [anon_sym_static] = ACTIONS(3671), + [anon_sym_restrict] = ACTIONS(3671), + [anon_sym_register] = ACTIONS(3671), + [anon_sym_extern] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_if_token2] = ACTIONS(3671), + [sym_preproc_directive] = ACTIONS(3671), + [anon_sym_signed] = ACTIONS(3671), + [aux_sym_preproc_if_token1] = ACTIONS(3671), + [anon_sym_long] = ACTIONS(3671), + [anon_sym_enum] = ACTIONS(3671), + [anon_sym_const] = ACTIONS(3671), + [anon_sym_struct] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), + [aux_sym_preproc_def_token1] = ACTIONS(3671), + [anon_sym__Atomic] = ACTIONS(3671), + [anon_sym_auto] = ACTIONS(3671), + [sym_primitive_type] = ACTIONS(3671), + [anon_sym_inline] = ACTIONS(3671), + [anon_sym___attribute__] = ACTIONS(3671), }, [1491] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1492] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1551), - [sym_logical_expression] = STATE(1551), - [sym_bitwise_expression] = STATE(1551), - [sym_cast_expression] = STATE(1551), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1551), - [sym_char_literal] = STATE(1551), - [sym_assignment_expression] = STATE(1551), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1551), - [sym_math_expression] = STATE(1551), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_sizeof_expression] = STATE(1551), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1551), - [sym_concatenated_string] = STATE(1551), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4185), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4185), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4187), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4183), - [sym_false] = ACTIONS(4185), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), }, [1493] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1549), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1494] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), - [anon_sym_long] = ACTIONS(3881), - [anon_sym__Atomic] = ACTIONS(3881), - [sym_primitive_type] = ACTIONS(3881), - [anon_sym_auto] = ACTIONS(3881), - [anon_sym_volatile] = ACTIONS(3881), - [anon_sym_inline] = ACTIONS(3881), - [anon_sym_extern] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3881), - [aux_sym_preproc_else_token1] = ACTIONS(3881), - [aux_sym_preproc_if_token2] = ACTIONS(3881), - [sym_preproc_directive] = ACTIONS(3881), - [anon_sym_unsigned] = ACTIONS(3881), - [aux_sym_preproc_if_token1] = ACTIONS(3881), - [anon_sym_short] = ACTIONS(3881), - [anon_sym_static] = ACTIONS(3881), - [anon_sym_restrict] = ACTIONS(3881), - [anon_sym_struct] = ACTIONS(3881), - [anon_sym_union] = ACTIONS(3881), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), - [aux_sym_preproc_elif_token1] = ACTIONS(3881), - [aux_sym_preproc_def_token1] = ACTIONS(3881), - [anon_sym_signed] = ACTIONS(3881), - [anon_sym_register] = ACTIONS(3881), - [anon_sym_enum] = ACTIONS(3881), - [anon_sym_const] = ACTIONS(3881), + [sym_concatenated_string] = STATE(1550), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1550), + [sym_math_expression] = STATE(1550), + [sym_cast_expression] = STATE(1550), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1550), + [sym_assignment_expression] = STATE(1550), + [sym_relational_expression] = STATE(1550), + [sym_shift_expression] = STATE(1550), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1550), + [sym_bitwise_expression] = STATE(1550), + [sym_equality_expression] = STATE(1550), + [sym_sizeof_expression] = STATE(1550), + [sym_compound_literal_expression] = STATE(1550), + [sym_parenthesized_expression] = STATE(1550), + [sym_char_literal] = STATE(1550), + [sym_null] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4174), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4174), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1495] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), - [anon_sym_long] = ACTIONS(3399), - [anon_sym__Atomic] = ACTIONS(3399), - [sym_primitive_type] = ACTIONS(3399), - [anon_sym_auto] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_inline] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3399), - [aux_sym_preproc_if_token2] = ACTIONS(3399), - [sym_preproc_directive] = ACTIONS(3399), - [anon_sym_unsigned] = ACTIONS(3399), - [aux_sym_preproc_if_token1] = ACTIONS(3399), - [anon_sym_short] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_restrict] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), - [aux_sym_preproc_def_token1] = ACTIONS(3399), - [anon_sym_signed] = ACTIONS(3399), - [anon_sym_register] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1496] = { - [aux_sym_preproc_if_token2] = ACTIONS(4189), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4178), [sym_comment] = ACTIONS(3), }, [1497] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3421), - [anon_sym_long] = ACTIONS(3421), - [anon_sym__Atomic] = ACTIONS(3421), - [sym_primitive_type] = ACTIONS(3421), - [anon_sym_auto] = ACTIONS(3421), - [anon_sym_volatile] = ACTIONS(3421), - [anon_sym_inline] = ACTIONS(3421), - [anon_sym_extern] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3421), - [aux_sym_preproc_if_token2] = ACTIONS(3421), - [sym_preproc_directive] = ACTIONS(3421), - [anon_sym_unsigned] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [anon_sym_short] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_restrict] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3421), - [aux_sym_preproc_def_token1] = ACTIONS(3421), - [anon_sym_signed] = ACTIONS(3421), - [anon_sym_register] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_null] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [sym_true] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), }, [1498] = { - [aux_sym_preproc_if_token2] = ACTIONS(4191), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_null] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3468), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_AMP] = ACTIONS(3470), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym__Atomic] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [sym_number_literal] = ACTIONS(3470), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_auto] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), }, [1499] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), - [anon_sym_long] = ACTIONS(2222), - [anon_sym__Atomic] = ACTIONS(2222), - [sym_primitive_type] = ACTIONS(2222), - [anon_sym_auto] = ACTIONS(2222), - [anon_sym_volatile] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2222), - [aux_sym_preproc_if_token2] = ACTIONS(2222), - [sym_preproc_directive] = ACTIONS(2222), - [anon_sym_unsigned] = ACTIONS(2222), - [aux_sym_preproc_if_token1] = ACTIONS(2222), - [anon_sym_short] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_restrict] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), - [aux_sym_preproc_def_token1] = ACTIONS(2222), - [anon_sym_signed] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3476), + [anon_sym_unsigned] = ACTIONS(3476), + [anon_sym_volatile] = ACTIONS(3476), + [anon_sym_short] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3478), + [sym_null] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_goto] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3476), + [sym_preproc_directive] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_LPAREN2] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3476), + [anon_sym__Atomic] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3476), + [aux_sym_preproc_include_token1] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_restrict] = ACTIONS(3476), + [anon_sym_register] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_long] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [anon_sym_auto] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3476), + [anon_sym___attribute__] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), }, [1500] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2234), - [anon_sym_long] = ACTIONS(2234), - [anon_sym__Atomic] = ACTIONS(2234), - [sym_primitive_type] = ACTIONS(2234), - [anon_sym_auto] = ACTIONS(2234), - [anon_sym_volatile] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_if_token2] = ACTIONS(2234), - [sym_preproc_directive] = ACTIONS(2234), - [anon_sym_unsigned] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2234), - [anon_sym_short] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_restrict] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [anon_sym_signed] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), + [sym_while_statement] = STATE(1552), + [sym_continue_statement] = STATE(1552), + [sym_goto_statement] = STATE(1552), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1552), + [sym_expression_statement] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_do_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1552), + [sym_return_statement] = STATE(1552), + [sym_break_statement] = STATE(1552), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1552), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1501] = { - [sym_comment] = ACTIONS(139), - [anon_sym_LF] = ACTIONS(4193), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), }, [1502] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_auto] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), + [aux_sym_for_statement_repeat1] = STATE(1554), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1503] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(4195), + [sym_concatenated_string] = STATE(1555), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1555), + [sym_math_expression] = STATE(1555), + [sym_cast_expression] = STATE(1555), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1555), + [sym_assignment_expression] = STATE(1555), + [sym_relational_expression] = STATE(1555), + [sym_shift_expression] = STATE(1555), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1555), + [sym_bitwise_expression] = STATE(1555), + [sym_equality_expression] = STATE(1555), + [sym_sizeof_expression] = STATE(1555), + [sym_compound_literal_expression] = STATE(1555), + [sym_parenthesized_expression] = STATE(1555), + [sym_char_literal] = STATE(1555), + [sym_null] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4182), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1504] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3885), - [anon_sym_long] = ACTIONS(3885), - [anon_sym__Atomic] = ACTIONS(3885), - [sym_primitive_type] = ACTIONS(3885), - [anon_sym_auto] = ACTIONS(3885), - [anon_sym_volatile] = ACTIONS(3885), - [anon_sym_inline] = ACTIONS(3885), - [anon_sym_extern] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3885), - [aux_sym_preproc_else_token1] = ACTIONS(3885), - [aux_sym_preproc_if_token2] = ACTIONS(3885), - [sym_preproc_directive] = ACTIONS(3885), - [anon_sym_unsigned] = ACTIONS(3885), - [aux_sym_preproc_if_token1] = ACTIONS(3885), - [anon_sym_short] = ACTIONS(3885), - [anon_sym_static] = ACTIONS(3885), - [anon_sym_restrict] = ACTIONS(3885), - [anon_sym_struct] = ACTIONS(3885), - [anon_sym_union] = ACTIONS(3885), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3885), - [aux_sym_preproc_elif_token1] = ACTIONS(3885), - [aux_sym_preproc_def_token1] = ACTIONS(3885), - [anon_sym_signed] = ACTIONS(3885), - [anon_sym_register] = ACTIONS(3885), - [anon_sym_enum] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3885), + [sym_while_statement] = STATE(1415), + [sym_continue_statement] = STATE(1415), + [sym_goto_statement] = STATE(1415), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1415), + [sym_expression_statement] = STATE(1415), + [sym_if_statement] = STATE(1415), + [sym_do_statement] = STATE(1415), + [sym_for_statement] = STATE(1415), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1415), + [sym_return_statement] = STATE(1415), + [sym_break_statement] = STATE(1415), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1415), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1505] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [aux_sym_preproc_else_token1] = ACTIONS(2988), - [aux_sym_preproc_if_token2] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [anon_sym_unsigned] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [aux_sym_preproc_elif_token1] = ACTIONS(2988), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_register] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), + [sym_concatenated_string] = STATE(1557), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1557), + [sym_math_expression] = STATE(1557), + [sym_cast_expression] = STATE(1557), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_relational_expression] = STATE(1557), + [sym_shift_expression] = STATE(1557), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1557), + [sym_bitwise_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_sizeof_expression] = STATE(1557), + [sym_compound_literal_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_char_literal] = STATE(1557), + [sym_null] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4186), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1506] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3893), - [anon_sym_long] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(3893), - [anon_sym_auto] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_inline] = ACTIONS(3893), - [anon_sym_extern] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3893), - [aux_sym_preproc_else_token1] = ACTIONS(3893), - [aux_sym_preproc_if_token2] = ACTIONS(3893), - [sym_preproc_directive] = ACTIONS(3893), - [anon_sym_unsigned] = ACTIONS(3893), - [aux_sym_preproc_if_token1] = ACTIONS(3893), - [anon_sym_short] = ACTIONS(3893), - [anon_sym_static] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym_struct] = ACTIONS(3893), - [anon_sym_union] = ACTIONS(3893), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3893), - [aux_sym_preproc_elif_token1] = ACTIONS(3893), - [aux_sym_preproc_def_token1] = ACTIONS(3893), - [anon_sym_signed] = ACTIONS(3893), - [anon_sym_register] = ACTIONS(3893), - [anon_sym_enum] = ACTIONS(3893), - [anon_sym_const] = ACTIONS(3893), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1507] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1559), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1559), + [sym_math_expression] = STATE(1559), + [sym_cast_expression] = STATE(1559), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1559), + [sym_assignment_expression] = STATE(1559), + [sym_relational_expression] = STATE(1559), + [sym_shift_expression] = STATE(1559), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1559), + [sym_bitwise_expression] = STATE(1559), + [sym_equality_expression] = STATE(1559), + [sym_sizeof_expression] = STATE(1559), + [sym_compound_literal_expression] = STATE(1559), + [sym_parenthesized_expression] = STATE(1559), + [sym_char_literal] = STATE(1559), + [sym_null] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4194), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4192), + [sym_true] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1508] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4197), + [sym_null] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(3822), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym__Atomic] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [aux_sym_preproc_elif_token1] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [aux_sym_preproc_else_token1] = ACTIONS(3822), + [anon_sym_TILDE] = ACTIONS(3824), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3824), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_else] = ACTIONS(3822), + [sym_true] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [sym_identifier] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [anon_sym_auto] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym_DASH] = ACTIONS(3822), }, [1509] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_goto_statement] = STATE(1560), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1560), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1510] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4198), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4199), }, [1511] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1558), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4199), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1562), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1512] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1559), - [sym_logical_expression] = STATE(1559), - [sym_bitwise_expression] = STATE(1559), - [sym_cast_expression] = STATE(1559), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1559), - [sym_char_literal] = STATE(1559), - [sym_assignment_expression] = STATE(1559), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1559), - [sym_math_expression] = STATE(1559), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1559), - [sym_equality_expression] = STATE(1559), - [sym_relational_expression] = STATE(1559), - [sym_sizeof_expression] = STATE(1559), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1559), - [sym_concatenated_string] = STATE(1559), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4201), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4201), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4203), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4199), + [sym_while_statement] = STATE(1419), + [sym_continue_statement] = STATE(1419), + [sym_goto_statement] = STATE(1419), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1419), + [sym_expression_statement] = STATE(1419), + [sym_if_statement] = STATE(1419), + [sym_do_statement] = STATE(1419), + [sym_for_statement] = STATE(1419), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1419), + [sym_return_statement] = STATE(1419), + [sym_break_statement] = STATE(1419), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1419), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1513] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1564), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1514] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4205), + [sym_concatenated_string] = STATE(1565), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1565), + [sym_math_expression] = STATE(1565), + [sym_cast_expression] = STATE(1565), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1565), + [sym_assignment_expression] = STATE(1565), + [sym_relational_expression] = STATE(1565), + [sym_shift_expression] = STATE(1565), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1565), + [sym_bitwise_expression] = STATE(1565), + [sym_equality_expression] = STATE(1565), + [sym_sizeof_expression] = STATE(1565), + [sym_compound_literal_expression] = STATE(1565), + [sym_parenthesized_expression] = STATE(1565), + [sym_char_literal] = STATE(1565), + [sym_null] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4202), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4200), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1515] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1516] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4207), + [sym_concatenated_string] = STATE(517), + [sym_pointer_expression] = STATE(517), + [sym_logical_expression] = STATE(517), + [sym_math_expression] = STATE(517), + [sym_cast_expression] = STATE(517), + [sym_field_expression] = STATE(517), + [sym_conditional_expression] = STATE(517), + [sym_assignment_expression] = STATE(517), + [sym_relational_expression] = STATE(517), + [sym_shift_expression] = STATE(517), + [sym_subscript_expression] = STATE(517), + [sym_call_expression] = STATE(517), + [sym_initializer_list] = STATE(516), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(517), + [sym_bitwise_expression] = STATE(517), + [sym_equality_expression] = STATE(517), + [sym_sizeof_expression] = STATE(517), + [sym_compound_literal_expression] = STATE(517), + [sym_parenthesized_expression] = STATE(517), + [sym_char_literal] = STATE(517), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(2739), + [sym_null] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(4208), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [sym_false] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(1776), }, [1517] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1562), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4207), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1567), + [sym_pointer_expression] = STATE(1567), + [sym_logical_expression] = STATE(1567), + [sym_math_expression] = STATE(1567), + [sym_cast_expression] = STATE(1567), + [sym_field_expression] = STATE(1567), + [sym_conditional_expression] = STATE(1567), + [sym_assignment_expression] = STATE(1567), + [sym_relational_expression] = STATE(1567), + [sym_shift_expression] = STATE(1567), + [sym_subscript_expression] = STATE(1567), + [sym_call_expression] = STATE(1567), + [sym_string_literal] = STATE(1093), + [sym__expression] = STATE(1567), + [sym_bitwise_expression] = STATE(1567), + [sym_equality_expression] = STATE(1567), + [sym_sizeof_expression] = STATE(1567), + [sym_compound_literal_expression] = STATE(1567), + [sym_parenthesized_expression] = STATE(1567), + [sym_char_literal] = STATE(1567), + [sym_null] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2051), + [sym_false] = ACTIONS(4210), + [sym_identifier] = ACTIONS(4210), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2733), + [sym_true] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2739), }, [1518] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1563), - [sym_logical_expression] = STATE(1563), - [sym_bitwise_expression] = STATE(1563), - [sym_cast_expression] = STATE(1563), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1563), - [sym_char_literal] = STATE(1563), - [sym_assignment_expression] = STATE(1563), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1563), - [sym_math_expression] = STATE(1563), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1563), - [sym_equality_expression] = STATE(1563), - [sym_relational_expression] = STATE(1563), - [sym_sizeof_expression] = STATE(1563), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1563), - [sym_concatenated_string] = STATE(1563), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4209), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4209), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4211), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4209), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4207), + [sym_argument_list] = STATE(154), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2781), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(326), }, [1519] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_CARET_EQ] = ACTIONS(3067), - [anon_sym_LT_LT_EQ] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(4213), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3953), - [anon_sym_PIPE_PIPE] = ACTIONS(3955), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_GT_GT_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_EQ] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_AMP_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3953), - [anon_sym_AMP] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_case] = ACTIONS(4214), + [sym_null] = ACTIONS(4214), + [anon_sym_volatile] = ACTIONS(4214), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_typedef] = ACTIONS(4214), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_default] = ACTIONS(4214), + [anon_sym__Atomic] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4214), + [sym_number_literal] = ACTIONS(4216), + [anon_sym_restrict] = ACTIONS(4214), + [anon_sym_extern] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4214), + [anon_sym_long] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4216), + [anon_sym___attribute__] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_unsigned] = ACTIONS(4214), + [anon_sym_short] = ACTIONS(4214), + [anon_sym_do] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4216), + [sym_preproc_directive] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4216), + [aux_sym_preproc_if_token1] = ACTIONS(4214), + [anon_sym_LPAREN2] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4214), + [sym_true] = ACTIONS(4214), + [sym_primitive_type] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [aux_sym_preproc_include_token1] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_static] = ACTIONS(4214), + [anon_sym_register] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_switch] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4214), + [ts_builtin_sym_end] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [aux_sym_preproc_def_token1] = ACTIONS(4214), + [anon_sym_auto] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), }, [1520] = { - [anon_sym_DASH_DASH] = ACTIONS(4215), - [anon_sym_default] = ACTIONS(4217), - [sym_identifier] = ACTIONS(4217), - [anon_sym__Atomic] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4215), - [sym_number_literal] = ACTIONS(4215), - [anon_sym_restrict] = ACTIONS(4217), - [anon_sym_typedef] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_signed] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4215), - [anon_sym_volatile] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4215), - [anon_sym_extern] = ACTIONS(4217), - [anon_sym_sizeof] = ACTIONS(4217), - [anon_sym_union] = ACTIONS(4217), - [anon_sym_unsigned] = ACTIONS(4217), - [anon_sym_short] = ACTIONS(4217), - [anon_sym_do] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4215), - [anon_sym_LPAREN2] = ACTIONS(4215), - [anon_sym_long] = ACTIONS(4217), - [sym_true] = ACTIONS(4217), - [sym_primitive_type] = ACTIONS(4217), - [anon_sym_for] = ACTIONS(4217), - [sym_preproc_directive] = ACTIONS(4217), - [aux_sym_preproc_if_token1] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_static] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4215), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_switch] = ACTIONS(4217), - [sym_false] = ACTIONS(4217), - [anon_sym_enum] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [aux_sym_preproc_include_token1] = ACTIONS(4217), - [anon_sym_auto] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_case] = ACTIONS(4217), - [sym_null] = ACTIONS(4217), - [anon_sym_struct] = ACTIONS(4217), - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(4215), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_goto] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4215), - [aux_sym_preproc_def_token1] = ACTIONS(4217), - [anon_sym_register] = ACTIONS(4217), - [anon_sym_const] = ACTIONS(4217), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(57), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(623), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1521] = { - [anon_sym_DASH_DASH] = ACTIONS(3977), - [sym_identifier] = ACTIONS(3979), - [anon_sym__Atomic] = ACTIONS(3979), - [aux_sym_preproc_if_token2] = ACTIONS(3979), - [anon_sym_TILDE] = ACTIONS(3977), - [sym_number_literal] = ACTIONS(3977), - [anon_sym_restrict] = ACTIONS(3979), - [anon_sym_typedef] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_while] = ACTIONS(3979), - [anon_sym_signed] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3979), - [anon_sym_SQUOTE] = ACTIONS(3977), - [anon_sym_volatile] = ACTIONS(3979), - [anon_sym_DQUOTE] = ACTIONS(3977), - [anon_sym_extern] = ACTIONS(3979), - [anon_sym_sizeof] = ACTIONS(3979), - [anon_sym_union] = ACTIONS(3979), - [anon_sym_unsigned] = ACTIONS(3979), - [anon_sym_short] = ACTIONS(3979), - [anon_sym_do] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3979), - [aux_sym_preproc_elif_token1] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_LPAREN2] = ACTIONS(3977), - [anon_sym_long] = ACTIONS(3979), - [sym_true] = ACTIONS(3979), - [sym_primitive_type] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [aux_sym_preproc_else_token1] = ACTIONS(3979), - [sym_preproc_directive] = ACTIONS(3979), - [aux_sym_preproc_if_token1] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_static] = ACTIONS(3979), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_switch] = ACTIONS(3979), - [sym_false] = ACTIONS(3979), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_return] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [aux_sym_preproc_include_token1] = ACTIONS(3979), - [anon_sym_auto] = ACTIONS(3979), - [anon_sym_inline] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_else] = ACTIONS(3979), - [sym_null] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(3979), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_goto] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3977), - [aux_sym_preproc_def_token1] = ACTIONS(3979), - [anon_sym_register] = ACTIONS(3979), - [anon_sym_const] = ACTIONS(3979), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1522] = { - [sym_do_statement] = STATE(1564), - [sym_goto_statement] = STATE(1564), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1564), - [sym_switch_statement] = STATE(1564), - [sym_for_statement] = STATE(1564), - [sym_return_statement] = STATE(1564), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1564), - [sym_continue_statement] = STATE(1564), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1564), - [sym_labeled_statement] = STATE(1564), - [sym_expression_statement] = STATE(1564), - [sym_while_statement] = STATE(1564), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4218), + [sym_comment] = ACTIONS(3), }, [1523] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4219), + [aux_sym_for_statement_repeat1] = STATE(1570), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1524] = { - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_long] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_identifier] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_return] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [anon_sym_auto] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_null] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3628), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_AMP] = ACTIONS(3628), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3628), + [sym_concatenated_string] = STATE(1572), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1572), + [sym_math_expression] = STATE(1572), + [sym_cast_expression] = STATE(1572), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1572), + [sym_assignment_expression] = STATE(1572), + [sym_relational_expression] = STATE(1572), + [sym_shift_expression] = STATE(1572), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1572), + [sym_bitwise_expression] = STATE(1572), + [sym_equality_expression] = STATE(1572), + [sym_sizeof_expression] = STATE(1572), + [sym_compound_literal_expression] = STATE(1572), + [sym_parenthesized_expression] = STATE(1572), + [sym_char_literal] = STATE(1572), + [sym_null] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4222), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4220), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4224), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1525] = { - [sym_do_statement] = STATE(1566), - [sym_goto_statement] = STATE(1566), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1566), - [sym_switch_statement] = STATE(1566), - [sym_for_statement] = STATE(1566), - [sym_return_statement] = STATE(1566), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1566), - [sym_labeled_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_while_statement] = STATE(1566), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), - }, - [1526] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4226), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, - [1527] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1568), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4221), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [1526] = { + [sym_concatenated_string] = STATE(1574), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1574), + [sym_math_expression] = STATE(1574), + [sym_cast_expression] = STATE(1574), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1574), + [sym_assignment_expression] = STATE(1574), + [sym_relational_expression] = STATE(1574), + [sym_shift_expression] = STATE(1574), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1574), + [sym_bitwise_expression] = STATE(1574), + [sym_equality_expression] = STATE(1574), + [sym_sizeof_expression] = STATE(1574), + [sym_compound_literal_expression] = STATE(1574), + [sym_parenthesized_expression] = STATE(1574), + [sym_char_literal] = STATE(1574), + [sym_null] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4230), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4228), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4226), + [sym_true] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), + }, + [1527] = { + [sym_while_statement] = STATE(1575), + [sym_continue_statement] = STATE(1575), + [sym_goto_statement] = STATE(1575), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1575), + [sym_expression_statement] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_do_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1575), + [sym_return_statement] = STATE(1575), + [sym_break_statement] = STATE(1575), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1575), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1528] = { - [sym_do_statement] = STATE(1460), - [sym_goto_statement] = STATE(1460), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1460), - [sym_for_statement] = STATE(1460), - [sym_return_statement] = STATE(1460), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1460), - [sym_continue_statement] = STATE(1460), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1460), - [sym_labeled_statement] = STATE(1460), - [sym_expression_statement] = STATE(1460), - [sym_while_statement] = STATE(1460), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_while_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(304), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1529] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1570), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(328), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1530] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1571), - [sym_logical_expression] = STATE(1571), - [sym_bitwise_expression] = STATE(1571), - [sym_cast_expression] = STATE(1571), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1571), - [sym_char_literal] = STATE(1571), - [sym_assignment_expression] = STATE(1571), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1571), - [sym_math_expression] = STATE(1571), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1571), - [sym_equality_expression] = STATE(1571), - [sym_relational_expression] = STATE(1571), - [sym_sizeof_expression] = STATE(1571), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1571), - [sym_concatenated_string] = STATE(1571), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4225), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4225), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4227), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4223), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1577), + [sym_math_expression] = STATE(1577), + [sym_cast_expression] = STATE(1577), + [sym_declaration] = STATE(1576), + [sym_field_expression] = STATE(119), + [sym_storage_class_specifier] = STATE(277), + [aux_sym_sized_type_specifier_repeat1] = STATE(273), + [sym_struct_specifier] = STATE(276), + [sym__expression] = STATE(1577), + [sym_bitwise_expression] = STATE(1577), + [sym_equality_expression] = STATE(1577), + [sym_sizeof_expression] = STATE(1577), + [sym__declaration_specifiers] = STATE(275), + [sym_compound_literal_expression] = STATE(1577), + [sym_parenthesized_expression] = STATE(1577), + [sym_concatenated_string] = STATE(1577), + [sym_char_literal] = STATE(1577), + [sym_macro_type_specifier] = STATE(276), + [sym_type_qualifier] = STATE(277), + [sym__type_specifier] = STATE(276), + [sym_union_specifier] = STATE(276), + [sym_conditional_expression] = STATE(1577), + [sym_assignment_expression] = STATE(1577), + [sym_relational_expression] = STATE(1577), + [sym_shift_expression] = STATE(1577), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_attribute_specifier] = STATE(277), + [sym_string_literal] = STATE(123), + [aux_sym__declaration_specifiers_repeat1] = STATE(277), + [sym_sized_type_specifier] = STATE(276), + [sym_enum_specifier] = STATE(276), + [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_union] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(243), + [sym_null] = ACTIONS(4232), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_short] = ACTIONS(553), + [anon_sym_unsigned] = ACTIONS(553), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(555), + [sym_true] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_static] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [anon_sym_register] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(17), + [sym_number_literal] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(243), + [sym_false] = ACTIONS(4232), + [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_signed] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_auto] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_inline] = ACTIONS(17), + [anon_sym_sizeof] = ACTIONS(257), }, [1531] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4229), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1532] = { - [sym_do_statement] = STATE(1456), - [sym_goto_statement] = STATE(1456), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1456), - [sym_switch_statement] = STATE(1456), - [sym_for_statement] = STATE(1456), - [sym_return_statement] = STATE(1456), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1456), - [sym_continue_statement] = STATE(1456), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1456), - [sym_labeled_statement] = STATE(1456), - [sym_expression_statement] = STATE(1456), - [sym_while_statement] = STATE(1456), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1533] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4238), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4231), }, [1534] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1574), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4231), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1579), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4238), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1535] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1575), - [sym_logical_expression] = STATE(1575), - [sym_bitwise_expression] = STATE(1575), - [sym_cast_expression] = STATE(1575), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1575), - [sym_char_literal] = STATE(1575), - [sym_assignment_expression] = STATE(1575), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1575), - [sym_math_expression] = STATE(1575), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1575), - [sym_equality_expression] = STATE(1575), - [sym_relational_expression] = STATE(1575), - [sym_sizeof_expression] = STATE(1575), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1575), - [sym_concatenated_string] = STATE(1575), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4233), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4233), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4235), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4233), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4231), + [sym_concatenated_string] = STATE(1580), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1580), + [sym_math_expression] = STATE(1580), + [sym_cast_expression] = STATE(1580), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1580), + [sym_assignment_expression] = STATE(1580), + [sym_relational_expression] = STATE(1580), + [sym_shift_expression] = STATE(1580), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1580), + [sym_bitwise_expression] = STATE(1580), + [sym_equality_expression] = STATE(1580), + [sym_sizeof_expression] = STATE(1580), + [sym_compound_literal_expression] = STATE(1580), + [sym_parenthesized_expression] = STATE(1580), + [sym_char_literal] = STATE(1580), + [sym_null] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4242), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4240), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1536] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1537] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4237), + [sym_concatenated_string] = STATE(1582), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1582), + [sym_math_expression] = STATE(1582), + [sym_cast_expression] = STATE(1582), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1582), + [sym_assignment_expression] = STATE(1582), + [sym_relational_expression] = STATE(1582), + [sym_shift_expression] = STATE(1582), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1582), + [sym_bitwise_expression] = STATE(1582), + [sym_equality_expression] = STATE(1582), + [sym_sizeof_expression] = STATE(1582), + [sym_compound_literal_expression] = STATE(1582), + [sym_parenthesized_expression] = STATE(1582), + [sym_char_literal] = STATE(1582), + [sym_null] = ACTIONS(4244), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4244), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4244), + [anon_sym_RPAREN] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1538] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1539] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1578), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1584), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1584), + [sym_math_expression] = STATE(1584), + [sym_cast_expression] = STATE(1584), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1584), + [sym_assignment_expression] = STATE(1584), + [sym_relational_expression] = STATE(1584), + [sym_shift_expression] = STATE(1584), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1584), + [sym_bitwise_expression] = STATE(1584), + [sym_equality_expression] = STATE(1584), + [sym_sizeof_expression] = STATE(1584), + [sym_compound_literal_expression] = STATE(1584), + [sym_parenthesized_expression] = STATE(1584), + [sym_char_literal] = STATE(1584), + [sym_null] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4254), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4252), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4250), + [sym_true] = ACTIONS(4252), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1540] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1579), - [sym_logical_expression] = STATE(1579), - [sym_bitwise_expression] = STATE(1579), - [sym_cast_expression] = STATE(1579), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1579), - [sym_char_literal] = STATE(1579), - [sym_assignment_expression] = STATE(1579), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1579), - [sym_math_expression] = STATE(1579), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1579), - [sym_equality_expression] = STATE(1579), - [sym_relational_expression] = STATE(1579), - [sym_sizeof_expression] = STATE(1579), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1579), - [sym_concatenated_string] = STATE(1579), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4241), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4241), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4243), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4241), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4239), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(85), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(975), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(91), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1541] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1542] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1582), - [sym_logical_expression] = STATE(1582), - [sym_bitwise_expression] = STATE(1582), - [sym_cast_expression] = STATE(1582), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1582), - [sym_char_literal] = STATE(1582), - [sym_assignment_expression] = STATE(1582), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1582), - [sym_math_expression] = STATE(1582), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1582), - [sym_equality_expression] = STATE(1582), - [sym_relational_expression] = STATE(1582), - [sym_sizeof_expression] = STATE(1582), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1582), - [sym_concatenated_string] = STATE(1582), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4247), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4247), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4251), - [sym_false] = ACTIONS(4247), - [anon_sym_AMP] = ACTIONS(207), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4256), + [sym_comment] = ACTIONS(3), }, [1543] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1586), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1544] = { - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_long] = ACTIONS(1242), - [anon_sym__Atomic] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), - [sym_true] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_restrict] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [sym_false] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_auto] = ACTIONS(1242), - [anon_sym_volatile] = ACTIONS(1242), - [anon_sym_inline] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(4255), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1242), - [anon_sym_unsigned] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_short] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_goto] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [sym_null] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [anon_sym_register] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym_auto] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), }, [1545] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3663), + [anon_sym_union] = ACTIONS(3663), + [anon_sym_unsigned] = ACTIONS(3663), + [anon_sym_volatile] = ACTIONS(3663), + [anon_sym_short] = ACTIONS(3663), + [anon_sym_static] = ACTIONS(3663), + [anon_sym_restrict] = ACTIONS(3663), + [anon_sym_register] = ACTIONS(3663), + [anon_sym_extern] = ACTIONS(3663), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3663), + [sym_preproc_directive] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3663), + [anon_sym_long] = ACTIONS(3663), + [anon_sym_enum] = ACTIONS(3663), + [anon_sym_const] = ACTIONS(3663), + [anon_sym_struct] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3663), + [aux_sym_preproc_def_token1] = ACTIONS(3663), + [anon_sym__Atomic] = ACTIONS(3663), + [anon_sym_auto] = ACTIONS(3663), + [sym_primitive_type] = ACTIONS(3663), + [anon_sym_inline] = ACTIONS(3663), + [anon_sym___attribute__] = ACTIONS(3663), }, [1546] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_signed] = ACTIONS(3039), + [aux_sym_preproc_if_token1] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3039), + [aux_sym_preproc_def_token1] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym___attribute__] = ACTIONS(3039), }, [1547] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1586), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4257), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3671), + [anon_sym_union] = ACTIONS(3671), + [anon_sym_unsigned] = ACTIONS(3671), + [anon_sym_volatile] = ACTIONS(3671), + [anon_sym_short] = ACTIONS(3671), + [anon_sym_static] = ACTIONS(3671), + [anon_sym_restrict] = ACTIONS(3671), + [anon_sym_register] = ACTIONS(3671), + [anon_sym_extern] = ACTIONS(3671), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3671), + [sym_preproc_directive] = ACTIONS(3671), + [anon_sym_signed] = ACTIONS(3671), + [aux_sym_preproc_if_token1] = ACTIONS(3671), + [anon_sym_long] = ACTIONS(3671), + [anon_sym_enum] = ACTIONS(3671), + [anon_sym_const] = ACTIONS(3671), + [anon_sym_struct] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3671), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3671), + [aux_sym_preproc_def_token1] = ACTIONS(3671), + [anon_sym__Atomic] = ACTIONS(3671), + [anon_sym_auto] = ACTIONS(3671), + [sym_primitive_type] = ACTIONS(3671), + [anon_sym_inline] = ACTIONS(3671), + [anon_sym___attribute__] = ACTIONS(3671), }, [1548] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1549] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1588), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4258), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), }, [1550] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1589), - [sym_logical_expression] = STATE(1589), - [sym_bitwise_expression] = STATE(1589), - [sym_cast_expression] = STATE(1589), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1589), - [sym_char_literal] = STATE(1589), - [sym_assignment_expression] = STATE(1589), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1589), - [sym_math_expression] = STATE(1589), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1589), - [sym_equality_expression] = STATE(1589), - [sym_relational_expression] = STATE(1589), - [sym_sizeof_expression] = STATE(1589), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1589), - [sym_concatenated_string] = STATE(1589), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4261), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4261), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4263), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4259), + [aux_sym_for_statement_repeat1] = STATE(1588), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1551] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(117), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(121), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1552] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), - [anon_sym_long] = ACTIONS(3881), - [anon_sym__Atomic] = ACTIONS(3881), - [sym_primitive_type] = ACTIONS(3881), - [anon_sym_auto] = ACTIONS(3881), - [anon_sym_volatile] = ACTIONS(3881), - [anon_sym_inline] = ACTIONS(3881), - [anon_sym_extern] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3881), - [aux_sym_preproc_if_token2] = ACTIONS(3881), - [sym_preproc_directive] = ACTIONS(3881), - [anon_sym_unsigned] = ACTIONS(3881), - [aux_sym_preproc_if_token1] = ACTIONS(3881), - [anon_sym_short] = ACTIONS(3881), - [anon_sym_static] = ACTIONS(3881), - [anon_sym_restrict] = ACTIONS(3881), - [anon_sym_struct] = ACTIONS(3881), - [anon_sym_union] = ACTIONS(3881), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), - [aux_sym_preproc_def_token1] = ACTIONS(3881), - [anon_sym_signed] = ACTIONS(3881), - [anon_sym_register] = ACTIONS(3881), - [anon_sym_enum] = ACTIONS(3881), - [anon_sym_const] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_null] = ACTIONS(3822), + [sym_identifier] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3824), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_else] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [sym_true] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [sym_number_literal] = ACTIONS(3824), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_auto] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym_DASH] = ACTIONS(3822), }, [1553] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3885), - [anon_sym_long] = ACTIONS(3885), - [anon_sym__Atomic] = ACTIONS(3885), - [sym_primitive_type] = ACTIONS(3885), - [anon_sym_auto] = ACTIONS(3885), - [anon_sym_volatile] = ACTIONS(3885), - [anon_sym_inline] = ACTIONS(3885), - [anon_sym_extern] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3885), - [aux_sym_preproc_if_token2] = ACTIONS(3885), - [sym_preproc_directive] = ACTIONS(3885), - [anon_sym_unsigned] = ACTIONS(3885), - [aux_sym_preproc_if_token1] = ACTIONS(3885), - [anon_sym_short] = ACTIONS(3885), - [anon_sym_static] = ACTIONS(3885), - [anon_sym_restrict] = ACTIONS(3885), - [anon_sym_struct] = ACTIONS(3885), - [anon_sym_union] = ACTIONS(3885), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3885), - [aux_sym_preproc_def_token1] = ACTIONS(3885), - [anon_sym_signed] = ACTIONS(3885), - [anon_sym_register] = ACTIONS(3885), - [anon_sym_enum] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3885), + [sym_while_statement] = STATE(1589), + [sym_continue_statement] = STATE(1589), + [sym_goto_statement] = STATE(1589), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1589), + [sym_expression_statement] = STATE(1589), + [sym_if_statement] = STATE(1589), + [sym_do_statement] = STATE(1589), + [sym_for_statement] = STATE(1589), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1589), + [sym_return_statement] = STATE(1589), + [sym_break_statement] = STATE(1589), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1589), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1554] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), - [anon_sym_long] = ACTIONS(2988), - [anon_sym__Atomic] = ACTIONS(2988), - [sym_primitive_type] = ACTIONS(2988), - [anon_sym_auto] = ACTIONS(2988), - [anon_sym_volatile] = ACTIONS(2988), - [anon_sym_inline] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), - [aux_sym_preproc_if_token2] = ACTIONS(2988), - [sym_preproc_directive] = ACTIONS(2988), - [anon_sym_unsigned] = ACTIONS(2988), - [aux_sym_preproc_if_token1] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_restrict] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), - [aux_sym_preproc_def_token1] = ACTIONS(2988), - [anon_sym_signed] = ACTIONS(2988), - [anon_sym_register] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), }, [1555] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(3893), - [anon_sym_long] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(3893), - [anon_sym_auto] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_inline] = ACTIONS(3893), - [anon_sym_extern] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3893), - [aux_sym_preproc_if_token2] = ACTIONS(3893), - [sym_preproc_directive] = ACTIONS(3893), - [anon_sym_unsigned] = ACTIONS(3893), - [aux_sym_preproc_if_token1] = ACTIONS(3893), - [anon_sym_short] = ACTIONS(3893), - [anon_sym_static] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym_struct] = ACTIONS(3893), - [anon_sym_union] = ACTIONS(3893), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3893), - [aux_sym_preproc_def_token1] = ACTIONS(3893), - [anon_sym_signed] = ACTIONS(3893), - [anon_sym_register] = ACTIONS(3893), - [anon_sym_enum] = ACTIONS(3893), - [anon_sym_const] = ACTIONS(3893), + [aux_sym_for_statement_repeat1] = STATE(1591), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4260), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1556] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(241), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(245), - [anon_sym_while] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(1499), + [sym_continue_statement] = STATE(1499), + [sym_goto_statement] = STATE(1499), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1499), + [sym_expression_statement] = STATE(1499), + [sym_if_statement] = STATE(1499), + [sym_do_statement] = STATE(1499), + [sym_for_statement] = STATE(1499), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1499), + [sym_return_statement] = STATE(1499), + [sym_break_statement] = STATE(1499), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1499), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1557] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1593), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1558] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4267), + [sym_concatenated_string] = STATE(1594), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1594), + [sym_math_expression] = STATE(1594), + [sym_cast_expression] = STATE(1594), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1594), + [sym_assignment_expression] = STATE(1594), + [sym_relational_expression] = STATE(1594), + [sym_shift_expression] = STATE(1594), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1594), + [sym_bitwise_expression] = STATE(1594), + [sym_equality_expression] = STATE(1594), + [sym_sizeof_expression] = STATE(1594), + [sym_compound_literal_expression] = STATE(1594), + [sym_parenthesized_expression] = STATE(1594), + [sym_char_literal] = STATE(1594), + [sym_null] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4264), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4264), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1559] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1592), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4267), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1560] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1443), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_null] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4108), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [sym_true] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [sym_identifier] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), }, [1561] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(1596), + [sym_continue_statement] = STATE(1596), + [sym_goto_statement] = STATE(1596), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1596), + [sym_expression_statement] = STATE(1596), + [sym_if_statement] = STATE(1596), + [sym_do_statement] = STATE(1596), + [sym_for_statement] = STATE(1596), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1596), + [sym_return_statement] = STATE(1596), + [sym_break_statement] = STATE(1596), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1596), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1562] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4270), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4269), }, [1563] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1594), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), - }, - [1564] = { - [anon_sym_DASH_DASH] = ACTIONS(4119), - [sym_identifier] = ACTIONS(4121), - [anon_sym__Atomic] = ACTIONS(4121), - [aux_sym_preproc_if_token2] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4121), - [anon_sym_typedef] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4121), - [anon_sym_union] = ACTIONS(4121), - [anon_sym_unsigned] = ACTIONS(4121), - [anon_sym_short] = ACTIONS(4121), - [anon_sym_do] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4121), - [sym_true] = ACTIONS(4121), - [sym_primitive_type] = ACTIONS(4121), - [anon_sym_for] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [sym_preproc_directive] = ACTIONS(4121), - [aux_sym_preproc_if_token1] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [sym_false] = ACTIONS(4121), - [anon_sym_enum] = ACTIONS(4121), - [anon_sym_return] = ACTIONS(4121), - [anon_sym_continue] = ACTIONS(4121), - [aux_sym_preproc_include_token1] = ACTIONS(4121), - [anon_sym_auto] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_else] = ACTIONS(4121), - [sym_null] = ACTIONS(4121), - [anon_sym_struct] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(4121), - [anon_sym_goto] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4121), - [anon_sym_register] = ACTIONS(4121), - [anon_sym_const] = ACTIONS(4121), - }, - [1565] = { - [sym_do_statement] = STATE(1595), - [sym_goto_statement] = STATE(1595), - [sym__expression] = STATE(229), + [sym_while_statement] = STATE(1508), + [sym_continue_statement] = STATE(1508), + [sym_goto_statement] = STATE(1508), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), + [sym_math_expression] = STATE(229), [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1595), - [sym_switch_statement] = STATE(1595), - [sym_for_statement] = STATE(1595), - [sym_return_statement] = STATE(1595), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1508), + [sym_expression_statement] = STATE(1508), + [sym_if_statement] = STATE(1508), + [sym_do_statement] = STATE(1508), + [sym_for_statement] = STATE(1508), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(229), [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1595), - [sym_continue_statement] = STATE(1595), + [sym_switch_statement] = STATE(1508), + [sym_return_statement] = STATE(1508), + [sym_break_statement] = STATE(1508), + [sym_conditional_expression] = STATE(229), [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(229), [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1595), - [sym_labeled_statement] = STATE(1595), - [sym_expression_statement] = STATE(1595), - [sym_while_statement] = STATE(1595), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1804), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1508), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1564] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + }, + [1565] = { + [aux_sym_for_statement_repeat1] = STATE(1599), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1566] = { - [anon_sym_LPAREN2] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_long] = ACTIONS(3979), - [anon_sym__Atomic] = ACTIONS(3979), - [sym_primitive_type] = ACTIONS(3979), - [sym_true] = ACTIONS(3979), - [sym_identifier] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [aux_sym_preproc_if_token2] = ACTIONS(3979), - [sym_preproc_directive] = ACTIONS(3979), - [aux_sym_preproc_if_token1] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_static] = ACTIONS(3979), - [anon_sym_restrict] = ACTIONS(3979), - [anon_sym_TILDE] = ACTIONS(3977), - [anon_sym_typedef] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_while] = ACTIONS(3979), - [anon_sym_switch] = ACTIONS(3979), - [anon_sym_signed] = ACTIONS(3979), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [sym_number_literal] = ACTIONS(3977), - [anon_sym_return] = ACTIONS(3979), - [sym_false] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3979), - [aux_sym_preproc_include_token1] = ACTIONS(3979), - [anon_sym_auto] = ACTIONS(3979), - [anon_sym_volatile] = ACTIONS(3979), - [anon_sym_inline] = ACTIONS(3979), - [anon_sym_extern] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_sizeof] = ACTIONS(3979), - [anon_sym_union] = ACTIONS(3979), - [anon_sym_SQUOTE] = ACTIONS(3977), - [anon_sym_unsigned] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(3979), - [anon_sym_short] = ACTIONS(3979), - [anon_sym_DQUOTE] = ACTIONS(3977), - [sym_null] = ACTIONS(3979), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_do] = ACTIONS(3979), - [anon_sym_goto] = ACTIONS(3979), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3977), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_register] = ACTIONS(3979), - [anon_sym_else] = ACTIONS(3979), - [anon_sym_const] = ACTIONS(3979), - [anon_sym_LBRACE] = ACTIONS(3977), + [sym_concatenated_string] = STATE(1600), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1600), + [sym_math_expression] = STATE(1600), + [sym_cast_expression] = STATE(1600), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1600), + [sym_assignment_expression] = STATE(1600), + [sym_relational_expression] = STATE(1600), + [sym_shift_expression] = STATE(1600), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1600), + [sym_bitwise_expression] = STATE(1600), + [sym_equality_expression] = STATE(1600), + [sym_sizeof_expression] = STATE(1600), + [sym_compound_literal_expression] = STATE(1600), + [sym_parenthesized_expression] = STATE(1600), + [sym_char_literal] = STATE(1600), + [sym_null] = ACTIONS(4274), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4274), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4274), + [anon_sym_RPAREN] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1567] = { - [sym_do_statement] = STATE(1596), - [sym_goto_statement] = STATE(1596), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1596), - [sym_switch_statement] = STATE(1596), - [sym_for_statement] = STATE(1596), - [sym_return_statement] = STATE(1596), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1596), - [sym_continue_statement] = STATE(1596), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1596), - [sym_labeled_statement] = STATE(1596), - [sym_expression_statement] = STATE(1596), - [sym_while_statement] = STATE(1596), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(3755), + [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4086), + [anon_sym_GT_EQ] = ACTIONS(4078), + [anon_sym_PIPE_PIPE] = ACTIONS(4088), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3759), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(3757), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(3759), + [anon_sym_LBRACK] = ACTIONS(326), }, [1568] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4280), + [sym_null] = ACTIONS(4280), + [anon_sym_volatile] = ACTIONS(4280), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4280), + [anon_sym_const] = ACTIONS(4280), + [anon_sym_typedef] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_default] = ACTIONS(4280), + [anon_sym__Atomic] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4280), + [sym_number_literal] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4280), + [anon_sym_extern] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4280), + [anon_sym_long] = ACTIONS(4280), + [anon_sym_while] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [anon_sym_DQUOTE] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4280), + [anon_sym_unsigned] = ACTIONS(4280), + [anon_sym_short] = ACTIONS(4280), + [anon_sym_do] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4280), + [sym_true] = ACTIONS(4280), + [sym_primitive_type] = ACTIONS(4280), + [anon_sym_for] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [aux_sym_preproc_include_token1] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4280), + [anon_sym_register] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [sym_false] = ACTIONS(4280), + [anon_sym_enum] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4280), + [ts_builtin_sym_end] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4280), + [anon_sym_auto] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), }, [1569] = { - [sym_do_statement] = STATE(1524), - [sym_goto_statement] = STATE(1524), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1524), - [sym_switch_statement] = STATE(1524), - [sym_for_statement] = STATE(1524), - [sym_return_statement] = STATE(1524), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1524), - [sym_continue_statement] = STATE(1524), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1524), - [sym_labeled_statement] = STATE(1524), - [sym_expression_statement] = STATE(1524), - [sym_while_statement] = STATE(1524), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1570] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4284), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4273), }, [1571] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1599), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1572] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1600), - [sym_logical_expression] = STATE(1600), - [sym_bitwise_expression] = STATE(1600), - [sym_cast_expression] = STATE(1600), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1600), - [sym_char_literal] = STATE(1600), - [sym_assignment_expression] = STATE(1600), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1600), - [sym_math_expression] = STATE(1600), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1600), - [sym_equality_expression] = STATE(1600), - [sym_relational_expression] = STATE(1600), - [sym_sizeof_expression] = STATE(1600), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1600), - [sym_concatenated_string] = STATE(1600), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4277), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4273), + [aux_sym_for_statement_repeat1] = STATE(1603), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1573] = { - [sym_do_statement] = STATE(1521), - [sym_goto_statement] = STATE(1521), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1521), - [sym_switch_statement] = STATE(1521), - [sym_for_statement] = STATE(1521), - [sym_return_statement] = STATE(1521), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1521), - [sym_continue_statement] = STATE(1521), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1521), - [sym_labeled_statement] = STATE(1521), - [sym_expression_statement] = STATE(1521), - [sym_while_statement] = STATE(1521), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_concatenated_string] = STATE(1604), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1604), + [sym_math_expression] = STATE(1604), + [sym_cast_expression] = STATE(1604), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1604), + [sym_assignment_expression] = STATE(1604), + [sym_relational_expression] = STATE(1604), + [sym_shift_expression] = STATE(1604), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1604), + [sym_bitwise_expression] = STATE(1604), + [sym_equality_expression] = STATE(1604), + [sym_sizeof_expression] = STATE(1604), + [sym_compound_literal_expression] = STATE(1604), + [sym_parenthesized_expression] = STATE(1604), + [sym_char_literal] = STATE(1604), + [sym_null] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4288), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1574] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4279), - }, - [1575] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1602), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4279), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1575] = { + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_null] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(4294), + [anon_sym__Atomic] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [sym_true] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [sym_false] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), }, [1576] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(517), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(521), - [anon_sym_while] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1608), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1608), + [sym_math_expression] = STATE(1608), + [sym_cast_expression] = STATE(1608), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1608), + [sym_assignment_expression] = STATE(1608), + [sym_relational_expression] = STATE(1608), + [sym_shift_expression] = STATE(1608), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1608), + [sym_bitwise_expression] = STATE(1608), + [sym_equality_expression] = STATE(1608), + [sym_sizeof_expression] = STATE(1608), + [sym_compound_literal_expression] = STATE(1608), + [sym_parenthesized_expression] = STATE(1608), + [sym_char_literal] = STATE(1608), + [sym_null] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4298), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4296), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4300), + [sym_true] = ACTIONS(4296), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1577] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4302), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1578] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4281), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1579] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1604), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4304), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4281), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), }, [1580] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1605), - [sym_logical_expression] = STATE(1605), - [sym_bitwise_expression] = STATE(1605), - [sym_cast_expression] = STATE(1605), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1605), - [sym_char_literal] = STATE(1605), - [sym_assignment_expression] = STATE(1605), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1605), - [sym_math_expression] = STATE(1605), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1605), - [sym_equality_expression] = STATE(1605), - [sym_relational_expression] = STATE(1605), - [sym_sizeof_expression] = STATE(1605), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1605), - [sym_concatenated_string] = STATE(1605), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4283), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4281), + [aux_sym_for_statement_repeat1] = STATE(1611), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1581] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1607), - [sym_logical_expression] = STATE(1607), - [sym_bitwise_expression] = STATE(1607), - [sym_cast_expression] = STATE(1607), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1607), - [sym_char_literal] = STATE(1607), - [sym_assignment_expression] = STATE(1607), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1607), - [sym_math_expression] = STATE(1607), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1607), - [sym_equality_expression] = STATE(1607), - [sym_relational_expression] = STATE(1607), - [sym_sizeof_expression] = STATE(1607), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1607), - [sym_concatenated_string] = STATE(1607), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4287), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4287), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4289), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4287), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4291), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1582] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [aux_sym_for_statement_repeat1] = STATE(1613), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4306), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1583] = { - [sym_string_literal] = STATE(96), - [sym__expression] = STATE(1609), - [sym_logical_expression] = STATE(1609), - [sym_bitwise_expression] = STATE(1609), - [sym_cast_expression] = STATE(1609), - [sym_field_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(1609), - [sym_char_literal] = STATE(1609), - [sym_assignment_expression] = STATE(1609), - [sym_pointer_expression] = STATE(90), - [sym_shift_expression] = STATE(1609), - [sym_math_expression] = STATE(1609), - [sym_call_expression] = STATE(90), - [sym_conditional_expression] = STATE(1609), - [sym_equality_expression] = STATE(1609), - [sym_relational_expression] = STATE(1609), - [sym_sizeof_expression] = STATE(1609), - [sym_subscript_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(1609), - [sym_concatenated_string] = STATE(1609), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_LPAREN2] = ACTIONS(191), - [sym_identifier] = ACTIONS(193), - [sym_true] = ACTIONS(4295), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_sizeof] = ACTIONS(199), - [sym_null] = ACTIONS(4295), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [sym_number_literal] = ACTIONS(4297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(4293), - [sym_false] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(207), + [sym_concatenated_string] = STATE(1614), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1614), + [sym_math_expression] = STATE(1614), + [sym_cast_expression] = STATE(1614), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1614), + [sym_assignment_expression] = STATE(1614), + [sym_relational_expression] = STATE(1614), + [sym_shift_expression] = STATE(1614), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1614), + [sym_bitwise_expression] = STATE(1614), + [sym_equality_expression] = STATE(1614), + [sym_sizeof_expression] = STATE(1614), + [sym_compound_literal_expression] = STATE(1614), + [sym_parenthesized_expression] = STATE(1614), + [sym_char_literal] = STATE(1614), + [sym_null] = ACTIONS(4308), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4310), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4308), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4308), + [anon_sym_RPAREN] = ACTIONS(4306), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1584] = { - [sym_do_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1585] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1586] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4314), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4299), }, [1587] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1588] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4316), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4301), }, [1589] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1612), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_null] = ACTIONS(4108), + [sym_identifier] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [sym_true] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [sym_number_literal] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_auto] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), }, [1590] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1613), - [sym_logical_expression] = STATE(1613), - [sym_bitwise_expression] = STATE(1613), - [sym_cast_expression] = STATE(1613), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1613), - [sym_char_literal] = STATE(1613), - [sym_assignment_expression] = STATE(1613), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1613), - [sym_math_expression] = STATE(1613), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1613), - [sym_equality_expression] = STATE(1613), - [sym_relational_expression] = STATE(1613), - [sym_sizeof_expression] = STATE(1613), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1613), - [sym_concatenated_string] = STATE(1613), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4303), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4305), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4301), + [sym_while_statement] = STATE(1618), + [sym_continue_statement] = STATE(1618), + [sym_goto_statement] = STATE(1618), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1618), + [sym_expression_statement] = STATE(1618), + [sym_if_statement] = STATE(1618), + [sym_do_statement] = STATE(1618), + [sym_for_statement] = STATE(1618), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1618), + [sym_return_statement] = STATE(1618), + [sym_break_statement] = STATE(1618), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1618), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1591] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4318), + [sym_comment] = ACTIONS(3), }, [1592] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4307), + [sym_while_statement] = STATE(1552), + [sym_continue_statement] = STATE(1552), + [sym_goto_statement] = STATE(1552), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1552), + [sym_expression_statement] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_do_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1552), + [sym_return_statement] = STATE(1552), + [sym_break_statement] = STATE(1552), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1552), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1593] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4320), + [sym_comment] = ACTIONS(3), }, [1594] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4309), + [aux_sym_for_statement_repeat1] = STATE(1621), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1595] = { - [anon_sym_DASH_DASH] = ACTIONS(4215), - [sym_identifier] = ACTIONS(4217), - [anon_sym__Atomic] = ACTIONS(4217), - [aux_sym_preproc_if_token2] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4215), - [sym_number_literal] = ACTIONS(4215), - [anon_sym_restrict] = ACTIONS(4217), - [anon_sym_typedef] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4215), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_signed] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4215), - [anon_sym_volatile] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4215), - [anon_sym_extern] = ACTIONS(4217), - [anon_sym_sizeof] = ACTIONS(4217), - [anon_sym_union] = ACTIONS(4217), - [anon_sym_unsigned] = ACTIONS(4217), - [anon_sym_short] = ACTIONS(4217), - [anon_sym_do] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4217), - [aux_sym_preproc_elif_token1] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4215), - [anon_sym_LPAREN2] = ACTIONS(4215), - [anon_sym_long] = ACTIONS(4217), - [sym_true] = ACTIONS(4217), - [sym_primitive_type] = ACTIONS(4217), - [anon_sym_for] = ACTIONS(4217), - [aux_sym_preproc_else_token1] = ACTIONS(4217), - [sym_preproc_directive] = ACTIONS(4217), - [aux_sym_preproc_if_token1] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_static] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_switch] = ACTIONS(4217), - [sym_false] = ACTIONS(4217), - [anon_sym_enum] = ACTIONS(4217), - [anon_sym_return] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [aux_sym_preproc_include_token1] = ACTIONS(4217), - [anon_sym_auto] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [sym_null] = ACTIONS(4217), - [anon_sym_struct] = ACTIONS(4217), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_goto] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4215), - [aux_sym_preproc_def_token1] = ACTIONS(4217), - [anon_sym_register] = ACTIONS(4217), - [anon_sym_const] = ACTIONS(4217), + [sym_concatenated_string] = STATE(1622), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1622), + [sym_math_expression] = STATE(1622), + [sym_cast_expression] = STATE(1622), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1622), + [sym_assignment_expression] = STATE(1622), + [sym_relational_expression] = STATE(1622), + [sym_shift_expression] = STATE(1622), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1622), + [sym_bitwise_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_sizeof_expression] = STATE(1622), + [sym_compound_literal_expression] = STATE(1622), + [sym_parenthesized_expression] = STATE(1622), + [sym_char_literal] = STATE(1622), + [sym_null] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4322), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4322), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1596] = { - [anon_sym_LPAREN2] = ACTIONS(4119), - [anon_sym_DASH_DASH] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4121), - [anon_sym__Atomic] = ACTIONS(4121), - [sym_primitive_type] = ACTIONS(4121), - [sym_true] = ACTIONS(4121), - [sym_identifier] = ACTIONS(4121), - [anon_sym_for] = ACTIONS(4121), - [aux_sym_preproc_if_token2] = ACTIONS(4121), - [sym_preproc_directive] = ACTIONS(4121), - [aux_sym_preproc_if_token1] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4121), - [anon_sym_restrict] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4119), - [anon_sym_typedef] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4121), - [anon_sym_while] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4121), - [anon_sym_enum] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4121), - [sym_false] = ACTIONS(4121), - [anon_sym_continue] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4121), - [aux_sym_preproc_include_token1] = ACTIONS(4121), - [anon_sym_auto] = ACTIONS(4121), - [anon_sym_volatile] = ACTIONS(4121), - [anon_sym_inline] = ACTIONS(4121), - [anon_sym_extern] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4121), - [anon_sym_union] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4119), - [anon_sym_unsigned] = ACTIONS(4121), - [anon_sym_struct] = ACTIONS(4121), - [anon_sym_short] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4119), - [sym_null] = ACTIONS(4121), - [anon_sym_break] = ACTIONS(4121), - [anon_sym_do] = ACTIONS(4121), - [anon_sym_goto] = ACTIONS(4121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_register] = ACTIONS(4121), - [anon_sym_else] = ACTIONS(4121), - [anon_sym_const] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4119), + [sym_null] = ACTIONS(4214), + [anon_sym_volatile] = ACTIONS(4214), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4214), + [aux_sym_preproc_if_token2] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_typedef] = ACTIONS(4214), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym__Atomic] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4214), + [sym_number_literal] = ACTIONS(4216), + [anon_sym_restrict] = ACTIONS(4214), + [anon_sym_extern] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4214), + [anon_sym_long] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4214), + [aux_sym_preproc_elif_token1] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4216), + [anon_sym___attribute__] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_unsigned] = ACTIONS(4214), + [anon_sym_short] = ACTIONS(4214), + [anon_sym_do] = ACTIONS(4214), + [aux_sym_preproc_else_token1] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4216), + [sym_preproc_directive] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4216), + [aux_sym_preproc_if_token1] = ACTIONS(4214), + [anon_sym_LPAREN2] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4214), + [sym_true] = ACTIONS(4214), + [sym_primitive_type] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [aux_sym_preproc_include_token1] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_static] = ACTIONS(4214), + [anon_sym_register] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_switch] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [aux_sym_preproc_def_token1] = ACTIONS(4214), + [anon_sym_auto] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), }, [1597] = { - [sym_do_statement] = STATE(1616), - [sym_goto_statement] = STATE(1616), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_expression_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2540), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), - }, - [1598] = { - [sym_do_statement] = STATE(1566), - [sym_goto_statement] = STATE(1566), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1566), - [sym_switch_statement] = STATE(1566), - [sym_for_statement] = STATE(1566), - [sym_return_statement] = STATE(1566), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1566), - [sym_labeled_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_while_statement] = STATE(1566), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), - }, - [1599] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4311), - }, - [1600] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1618), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), - }, - [1601] = { - [sym_do_statement] = STATE(1564), - [sym_goto_statement] = STATE(1564), - [sym__expression] = STATE(229), + [sym_while_statement] = STATE(1623), + [sym_continue_statement] = STATE(1623), + [sym_goto_statement] = STATE(1623), + [sym_pointer_expression] = STATE(35), [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), + [sym_math_expression] = STATE(229), [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1623), + [sym_expression_statement] = STATE(1623), + [sym_if_statement] = STATE(1623), + [sym_do_statement] = STATE(1623), + [sym_for_statement] = STATE(1623), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1564), - [sym_switch_statement] = STATE(1564), - [sym_for_statement] = STATE(1564), - [sym_return_statement] = STATE(1564), - [sym_comma_expression] = STATE(230), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1623), + [sym_return_statement] = STATE(1623), + [sym_break_statement] = STATE(1623), [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1623), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(440), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(446), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1598] = { + [sym_while_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_goto_statement] = STATE(1560), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_if_statement] = STATE(1560), + [sym_do_statement] = STATE(1560), + [sym_for_statement] = STATE(1560), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(229), [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1564), - [sym_continue_statement] = STATE(1564), + [sym_switch_statement] = STATE(1560), + [sym_return_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_conditional_expression] = STATE(229), [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), + [sym_relational_expression] = STATE(229), [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1564), - [sym_labeled_statement] = STATE(1564), - [sym_expression_statement] = STATE(1564), - [sym_while_statement] = STATE(1564), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1560), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [1602] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [1599] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4326), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4313), }, - [1603] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [1600] = { + [aux_sym_for_statement_repeat1] = STATE(1625), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1601] = { + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(587), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(591), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, - [1604] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [1602] = { + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1603] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4328), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4315), + }, + [1604] = { + [aux_sym_for_statement_repeat1] = STATE(1627), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1605] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1621), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1628), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1628), + [sym_math_expression] = STATE(1628), + [sym_cast_expression] = STATE(1628), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1628), + [sym_assignment_expression] = STATE(1628), + [sym_relational_expression] = STATE(1628), + [sym_shift_expression] = STATE(1628), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1628), + [sym_bitwise_expression] = STATE(1628), + [sym_equality_expression] = STATE(1628), + [sym_sizeof_expression] = STATE(1628), + [sym_compound_literal_expression] = STATE(1628), + [sym_parenthesized_expression] = STATE(1628), + [sym_char_literal] = STATE(1628), + [sym_null] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4332), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4330), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1606] = { - [sym_do_statement] = STATE(1002), - [sym_goto_statement] = STATE(1002), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1002), - [sym_switch_statement] = STATE(1002), - [sym_for_statement] = STATE(1002), - [sym_return_statement] = STATE(1002), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1002), - [sym_continue_statement] = STATE(1002), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1002), - [sym_labeled_statement] = STATE(1002), - [sym_expression_statement] = STATE(1002), - [sym_while_statement] = STATE(1002), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(869), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1607] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1623), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4317), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1630), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1630), + [sym_math_expression] = STATE(1630), + [sym_cast_expression] = STATE(1630), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1630), + [sym_assignment_expression] = STATE(1630), + [sym_relational_expression] = STATE(1630), + [sym_shift_expression] = STATE(1630), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1630), + [sym_bitwise_expression] = STATE(1630), + [sym_equality_expression] = STATE(1630), + [sym_sizeof_expression] = STATE(1630), + [sym_compound_literal_expression] = STATE(1630), + [sym_parenthesized_expression] = STATE(1630), + [sym_char_literal] = STATE(1630), + [sym_null] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4336), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4334), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1608] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1624), - [sym_logical_expression] = STATE(1624), - [sym_bitwise_expression] = STATE(1624), - [sym_cast_expression] = STATE(1624), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1624), - [sym_char_literal] = STATE(1624), - [sym_assignment_expression] = STATE(1624), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1624), - [sym_math_expression] = STATE(1624), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1624), - [sym_equality_expression] = STATE(1624), - [sym_relational_expression] = STATE(1624), - [sym_sizeof_expression] = STATE(1624), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1624), - [sym_concatenated_string] = STATE(1624), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4319), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4319), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4321), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4317), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1609] = { - [sym_argument_list] = STATE(153), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(322), + [sym_concatenated_string] = STATE(1632), + [sym_pointer_expression] = STATE(119), + [sym_logical_expression] = STATE(1632), + [sym_math_expression] = STATE(1632), + [sym_cast_expression] = STATE(1632), + [sym_field_expression] = STATE(119), + [sym_conditional_expression] = STATE(1632), + [sym_assignment_expression] = STATE(1632), + [sym_relational_expression] = STATE(1632), + [sym_shift_expression] = STATE(1632), + [sym_subscript_expression] = STATE(119), + [sym_call_expression] = STATE(119), + [sym_string_literal] = STATE(123), + [sym__expression] = STATE(1632), + [sym_bitwise_expression] = STATE(1632), + [sym_equality_expression] = STATE(1632), + [sym_sizeof_expression] = STATE(1632), + [sym_compound_literal_expression] = STATE(1632), + [sym_parenthesized_expression] = STATE(1632), + [sym_char_literal] = STATE(1632), + [sym_null] = ACTIONS(4342), + [anon_sym_BANG] = ACTIONS(239), + [sym_number_literal] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_PLUS_PLUS] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(245), + [sym_false] = ACTIONS(4342), + [sym_identifier] = ACTIONS(251), + [anon_sym_LPAREN2] = ACTIONS(253), + [anon_sym_DASH_DASH] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(257), }, [1610] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1252), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1611] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(3), }, [1612] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4325), + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1613] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1627), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4348), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4325), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), }, [1614] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1417), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(249), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1635), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4348), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1615] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1451), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_concatenated_string] = STATE(1636), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1636), + [sym_math_expression] = STATE(1636), + [sym_cast_expression] = STATE(1636), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1636), + [sym_assignment_expression] = STATE(1636), + [sym_relational_expression] = STATE(1636), + [sym_shift_expression] = STATE(1636), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1636), + [sym_bitwise_expression] = STATE(1636), + [sym_equality_expression] = STATE(1636), + [sym_sizeof_expression] = STATE(1636), + [sym_compound_literal_expression] = STATE(1636), + [sym_parenthesized_expression] = STATE(1636), + [sym_char_literal] = STATE(1636), + [sym_null] = ACTIONS(4350), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4352), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4350), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4350), + [anon_sym_RPAREN] = ACTIONS(4348), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1616] = { - [anon_sym_LPAREN2] = ACTIONS(4215), - [anon_sym_DASH_DASH] = ACTIONS(4215), - [anon_sym_long] = ACTIONS(4217), - [anon_sym__Atomic] = ACTIONS(4217), - [sym_primitive_type] = ACTIONS(4217), - [sym_true] = ACTIONS(4217), - [sym_identifier] = ACTIONS(4217), - [anon_sym_for] = ACTIONS(4217), - [aux_sym_preproc_if_token2] = ACTIONS(4217), - [sym_preproc_directive] = ACTIONS(4217), - [aux_sym_preproc_if_token1] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_static] = ACTIONS(4217), - [anon_sym_restrict] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4215), - [anon_sym_typedef] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_if] = ACTIONS(4217), - [anon_sym_while] = ACTIONS(4217), - [anon_sym_switch] = ACTIONS(4217), - [anon_sym_signed] = ACTIONS(4217), - [anon_sym_enum] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4215), - [sym_number_literal] = ACTIONS(4215), - [anon_sym_return] = ACTIONS(4217), - [sym_false] = ACTIONS(4217), - [anon_sym_continue] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4217), - [aux_sym_preproc_include_token1] = ACTIONS(4217), - [anon_sym_auto] = ACTIONS(4217), - [anon_sym_volatile] = ACTIONS(4217), - [anon_sym_inline] = ACTIONS(4217), - [anon_sym_extern] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_sizeof] = ACTIONS(4217), - [anon_sym_union] = ACTIONS(4217), - [anon_sym_SQUOTE] = ACTIONS(4215), - [anon_sym_unsigned] = ACTIONS(4217), - [anon_sym_struct] = ACTIONS(4217), - [anon_sym_short] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym_null] = ACTIONS(4217), - [anon_sym_break] = ACTIONS(4217), - [anon_sym_do] = ACTIONS(4217), - [anon_sym_goto] = ACTIONS(4217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4215), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_def_token1] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_register] = ACTIONS(4217), - [anon_sym_else] = ACTIONS(4217), - [anon_sym_const] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4215), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(967), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(971), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1617] = { - [sym_do_statement] = STATE(1596), - [sym_goto_statement] = STATE(1596), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1596), - [sym_switch_statement] = STATE(1596), - [sym_for_statement] = STATE(1596), - [sym_return_statement] = STATE(1596), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1596), - [sym_continue_statement] = STATE(1596), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1596), - [sym_labeled_statement] = STATE(1596), - [sym_expression_statement] = STATE(1596), - [sym_while_statement] = STATE(1596), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(115), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1618] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4214), + [anon_sym_unsigned] = ACTIONS(4214), + [anon_sym_volatile] = ACTIONS(4214), + [anon_sym_short] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4216), + [sym_null] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4214), + [anon_sym_do] = ACTIONS(4214), + [anon_sym_goto] = ACTIONS(4214), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(4214), + [sym_preproc_directive] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4216), + [aux_sym_preproc_if_token1] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4216), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_LPAREN2] = ACTIONS(4216), + [anon_sym_typedef] = ACTIONS(4214), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4214), + [anon_sym__Atomic] = ACTIONS(4214), + [sym_primitive_type] = ACTIONS(4214), + [sym_true] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4214), + [aux_sym_preproc_include_token1] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_static] = ACTIONS(4214), + [anon_sym_restrict] = ACTIONS(4214), + [anon_sym_register] = ACTIONS(4214), + [anon_sym_extern] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_switch] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_long] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [sym_number_literal] = ACTIONS(4216), + [aux_sym_preproc_def_token1] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [anon_sym_auto] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym___attribute__] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), }, [1619] = { - [sym_do_statement] = STATE(1595), - [sym_goto_statement] = STATE(1595), - [sym__expression] = STATE(229), - [sym_logical_expression] = STATE(229), - [sym_bitwise_expression] = STATE(229), - [sym_cast_expression] = STATE(229), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(229), - [sym_char_literal] = STATE(229), - [sym_if_statement] = STATE(1595), - [sym_switch_statement] = STATE(1595), - [sym_for_statement] = STATE(1595), - [sym_return_statement] = STATE(1595), - [sym_comma_expression] = STATE(230), - [sym_conditional_expression] = STATE(229), - [sym_equality_expression] = STATE(229), - [sym_relational_expression] = STATE(229), - [sym_sizeof_expression] = STATE(229), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(229), - [sym_concatenated_string] = STATE(229), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1595), - [sym_continue_statement] = STATE(1595), - [sym_assignment_expression] = STATE(229), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(229), - [sym_math_expression] = STATE(229), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1595), - [sym_labeled_statement] = STATE(1595), - [sym_expression_statement] = STATE(1595), - [sym_while_statement] = STATE(1595), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(1860), - [sym_true] = ACTIONS(440), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(460), - [sym_false] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_while_statement] = STATE(1637), + [sym_continue_statement] = STATE(1637), + [sym_goto_statement] = STATE(1637), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1637), + [sym_expression_statement] = STATE(1637), + [sym_if_statement] = STATE(1637), + [sym_do_statement] = STATE(1637), + [sym_for_statement] = STATE(1637), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1637), + [sym_return_statement] = STATE(1637), + [sym_break_statement] = STATE(1637), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1637), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1620] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [sym_while_statement] = STATE(1589), + [sym_continue_statement] = STATE(1589), + [sym_goto_statement] = STATE(1589), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1589), + [sym_expression_statement] = STATE(1589), + [sym_if_statement] = STATE(1589), + [sym_do_statement] = STATE(1589), + [sym_for_statement] = STATE(1589), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1589), + [sym_return_statement] = STATE(1589), + [sym_break_statement] = STATE(1589), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1589), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1621] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4354), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4329), }, [1622] = { - [sym_do_statement] = STATE(1222), - [sym_goto_statement] = STATE(1222), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1222), - [sym_switch_statement] = STATE(1222), - [sym_for_statement] = STATE(1222), - [sym_return_statement] = STATE(1222), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1222), - [sym_continue_statement] = STATE(1222), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1222), - [sym_expression_statement] = STATE(1222), - [sym_while_statement] = STATE(1222), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1639), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4354), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1623] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4331), + [sym_null] = ACTIONS(4280), + [anon_sym_volatile] = ACTIONS(4280), + [sym_comment] = ACTIONS(3), + [anon_sym_goto] = ACTIONS(4280), + [aux_sym_preproc_if_token2] = ACTIONS(4280), + [anon_sym_const] = ACTIONS(4280), + [anon_sym_typedef] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4280), + [sym_number_literal] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4280), + [anon_sym_extern] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4280), + [anon_sym_long] = ACTIONS(4280), + [anon_sym_while] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4280), + [aux_sym_preproc_elif_token1] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [anon_sym_DQUOTE] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4280), + [anon_sym_unsigned] = ACTIONS(4280), + [anon_sym_short] = ACTIONS(4280), + [anon_sym_do] = ACTIONS(4280), + [aux_sym_preproc_else_token1] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4280), + [sym_true] = ACTIONS(4280), + [sym_primitive_type] = ACTIONS(4280), + [anon_sym_for] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [aux_sym_preproc_include_token1] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4280), + [anon_sym_register] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [sym_false] = ACTIONS(4280), + [anon_sym_enum] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4280), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4280), + [anon_sym_auto] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), }, [1624] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1631), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [sym_while_statement] = STATE(1596), + [sym_continue_statement] = STATE(1596), + [sym_goto_statement] = STATE(1596), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1596), + [sym_expression_statement] = STATE(1596), + [sym_if_statement] = STATE(1596), + [sym_do_statement] = STATE(1596), + [sym_for_statement] = STATE(1596), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1596), + [sym_return_statement] = STATE(1596), + [sym_break_statement] = STATE(1596), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1596), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1625] = { - [sym_string_literal] = STATE(57), - [sym__expression] = STATE(1632), - [sym_logical_expression] = STATE(1632), - [sym_bitwise_expression] = STATE(1632), - [sym_cast_expression] = STATE(1632), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(1632), - [sym_char_literal] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_pointer_expression] = STATE(54), - [sym_shift_expression] = STATE(1632), - [sym_math_expression] = STATE(1632), - [sym_call_expression] = STATE(54), - [sym_conditional_expression] = STATE(1632), - [sym_equality_expression] = STATE(1632), - [sym_relational_expression] = STATE(1632), - [sym_sizeof_expression] = STATE(1632), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(1632), - [sym_concatenated_string] = STATE(1632), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_LPAREN2] = ACTIONS(89), - [sym_identifier] = ACTIONS(340), - [sym_true] = ACTIONS(4333), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(109), - [sym_null] = ACTIONS(4333), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [sym_number_literal] = ACTIONS(4335), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(107), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [sym_false] = ACTIONS(4333), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(4331), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4356), + [sym_comment] = ACTIONS(3), }, [1626] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1627] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4358), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4337), }, [1628] = { - [sym_do_statement] = STATE(1616), - [sym_goto_statement] = STATE(1616), - [sym__expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(461), - [sym_char_literal] = STATE(461), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_for_statement] = STATE(1616), - [sym_return_statement] = STATE(1616), - [sym_comma_expression] = STATE(462), - [sym_conditional_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1616), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1616), - [sym_labeled_statement] = STATE(1616), - [sym_expression_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2554), - [sym_true] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_switch] = ACTIONS(1101), - [sym_false] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1123), + [aux_sym_for_statement_repeat1] = STATE(1642), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4358), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1629] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3700), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1132), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1630] = { - [sym_do_statement] = STATE(1361), - [sym_goto_statement] = STATE(1361), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1361), - [sym_switch_statement] = STATE(1361), - [sym_for_statement] = STATE(1361), - [sym_return_statement] = STATE(1361), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1361), - [sym_continue_statement] = STATE(1361), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1361), - [sym_labeled_statement] = STATE(1361), - [sym_expression_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(1644), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4360), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), }, [1631] = { - [aux_sym_for_statement_repeat1] = STATE(896), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4339), + [sym_concatenated_string] = STATE(1645), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1645), + [sym_math_expression] = STATE(1645), + [sym_cast_expression] = STATE(1645), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1645), + [sym_assignment_expression] = STATE(1645), + [sym_relational_expression] = STATE(1645), + [sym_shift_expression] = STATE(1645), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1645), + [sym_bitwise_expression] = STATE(1645), + [sym_equality_expression] = STATE(1645), + [sym_sizeof_expression] = STATE(1645), + [sym_compound_literal_expression] = STATE(1645), + [sym_parenthesized_expression] = STATE(1645), + [sym_char_literal] = STATE(1645), + [sym_null] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4362), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4362), + [anon_sym_RPAREN] = ACTIONS(4360), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), }, [1632] = { - [sym_argument_list] = STATE(153), - [aux_sym_for_statement_repeat1] = STATE(1635), - [anon_sym_LPAREN2] = ACTIONS(288), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(312), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(4339), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(326), }, [1633] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(2752), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1634] = { - [sym_do_statement] = STATE(1454), - [sym_goto_statement] = STATE(1454), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1454), - [sym_labeled_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, [1635] = { - [aux_sym_for_statement_repeat1] = STATE(896), + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4368), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(4341), }, [1636] = { - [sym_do_statement] = STATE(1520), - [sym_goto_statement] = STATE(1520), - [sym__expression] = STATE(40), - [sym_logical_expression] = STATE(40), - [sym_bitwise_expression] = STATE(40), - [sym_cast_expression] = STATE(40), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(40), - [sym_char_literal] = STATE(40), - [sym_if_statement] = STATE(1520), - [sym_switch_statement] = STATE(1520), - [sym_for_statement] = STATE(1520), - [sym_return_statement] = STATE(1520), - [sym_comma_expression] = STATE(42), - [sym_conditional_expression] = STATE(40), - [sym_equality_expression] = STATE(40), - [sym_relational_expression] = STATE(40), - [sym_sizeof_expression] = STATE(40), - [sym_subscript_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(40), - [sym_concatenated_string] = STATE(40), - [sym_string_literal] = STATE(35), - [sym_break_statement] = STATE(1520), - [sym_continue_statement] = STATE(1520), - [sym_assignment_expression] = STATE(40), - [sym_pointer_expression] = STATE(34), - [sym_shift_expression] = STATE(40), - [sym_math_expression] = STATE(40), - [sym_call_expression] = STATE(34), - [sym_compound_statement] = STATE(1520), - [sym_labeled_statement] = STATE(1520), - [sym_expression_statement] = STATE(1520), - [sym_while_statement] = STATE(1520), - [anon_sym_DASH_DASH] = ACTIONS(5), - [anon_sym_LPAREN2] = ACTIONS(7), - [sym_identifier] = ACTIONS(3708), - [sym_true] = ACTIONS(15), - [anon_sym_for] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(25), - [sym_number_literal] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(45), - [anon_sym_PLUS_PLUS] = ACTIONS(5), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3714), - [anon_sym_switch] = ACTIONS(39), - [sym_false] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_return] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_sizeof] = ACTIONS(57), - [sym_null] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(69), - [anon_sym_do] = ACTIONS(71), - [anon_sym_goto] = ACTIONS(73), + [aux_sym_for_statement_repeat1] = STATE(1648), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4368), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1637] = { + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4280), + [anon_sym_unsigned] = ACTIONS(4280), + [anon_sym_volatile] = ACTIONS(4280), + [anon_sym_short] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4282), + [sym_null] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4280), + [anon_sym_do] = ACTIONS(4280), + [anon_sym_goto] = ACTIONS(4280), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_if_token2] = ACTIONS(4280), + [sym_preproc_directive] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4280), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4280), + [anon_sym__Atomic] = ACTIONS(4280), + [sym_primitive_type] = ACTIONS(4280), + [sym_true] = ACTIONS(4280), + [anon_sym_for] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4280), + [aux_sym_preproc_include_token1] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4280), + [anon_sym_restrict] = ACTIONS(4280), + [anon_sym_register] = ACTIONS(4280), + [anon_sym_extern] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_struct] = ACTIONS(4280), + [anon_sym_switch] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4280), + [anon_sym_enum] = ACTIONS(4280), + [anon_sym_long] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_while] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4280), + [sym_false] = ACTIONS(4280), + [anon_sym_auto] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym___attribute__] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + }, + [1638] = { + [sym_while_statement] = STATE(1618), + [sym_continue_statement] = STATE(1618), + [sym_goto_statement] = STATE(1618), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1618), + [sym_expression_statement] = STATE(1618), + [sym_if_statement] = STATE(1618), + [sym_do_statement] = STATE(1618), + [sym_for_statement] = STATE(1618), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1618), + [sym_return_statement] = STATE(1618), + [sym_break_statement] = STATE(1618), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1618), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1639] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4370), + [sym_comment] = ACTIONS(3), + }, + [1640] = { + [sym_while_statement] = STATE(1623), + [sym_continue_statement] = STATE(1623), + [sym_goto_statement] = STATE(1623), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(229), + [sym_math_expression] = STATE(229), + [sym_cast_expression] = STATE(229), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1623), + [sym_expression_statement] = STATE(1623), + [sym_if_statement] = STATE(1623), + [sym_do_statement] = STATE(1623), + [sym_for_statement] = STATE(1623), + [sym__expression] = STATE(229), + [sym_comma_expression] = STATE(227), + [sym_bitwise_expression] = STATE(229), + [sym_equality_expression] = STATE(229), + [sym_sizeof_expression] = STATE(229), + [sym_compound_literal_expression] = STATE(229), + [sym_parenthesized_expression] = STATE(229), + [sym_char_literal] = STATE(229), + [sym_concatenated_string] = STATE(229), + [sym_switch_statement] = STATE(1623), + [sym_return_statement] = STATE(1623), + [sym_break_statement] = STATE(1623), + [sym_conditional_expression] = STATE(229), + [sym_assignment_expression] = STATE(229), + [sym_relational_expression] = STATE(229), + [sym_shift_expression] = STATE(229), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1623), + [anon_sym_LBRACE] = ACTIONS(430), + [sym_null] = ACTIONS(412), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(432), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(448), + [sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(452), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1641] = { + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1642] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + }, + [1643] = { + [sym_while_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_goto_statement] = STATE(1332), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_if_statement] = STATE(1332), + [sym_do_statement] = STATE(1332), + [sym_for_statement] = STATE(1332), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1332), + [sym_return_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1332), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1644] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4374), + [sym_comment] = ACTIONS(3), + }, + [1645] = { + [aux_sym_for_statement_repeat1] = STATE(1652), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4374), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1646] = { + [sym_concatenated_string] = STATE(1653), + [sym_pointer_expression] = STATE(83), + [sym_logical_expression] = STATE(1653), + [sym_math_expression] = STATE(1653), + [sym_cast_expression] = STATE(1653), + [sym_field_expression] = STATE(83), + [sym_conditional_expression] = STATE(1653), + [sym_assignment_expression] = STATE(1653), + [sym_relational_expression] = STATE(1653), + [sym_shift_expression] = STATE(1653), + [sym_subscript_expression] = STATE(83), + [sym_call_expression] = STATE(83), + [sym_string_literal] = STATE(90), + [sym__expression] = STATE(1653), + [sym_bitwise_expression] = STATE(1653), + [sym_equality_expression] = STATE(1653), + [sym_sizeof_expression] = STATE(1653), + [sym_compound_literal_expression] = STATE(1653), + [sym_parenthesized_expression] = STATE(1653), + [sym_char_literal] = STATE(1653), + [sym_null] = ACTIONS(4376), + [anon_sym_BANG] = ACTIONS(167), + [sym_number_literal] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(159), + [sym_false] = ACTIONS(4376), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN2] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(163), + [sym_true] = ACTIONS(4376), + [anon_sym_RPAREN] = ACTIONS(4374), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(175), + }, + [1647] = { + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1648] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + }, + [1649] = { + [sym_while_statement] = STATE(1637), + [sym_continue_statement] = STATE(1637), + [sym_goto_statement] = STATE(1637), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(457), + [sym_math_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1637), + [sym_expression_statement] = STATE(1637), + [sym_if_statement] = STATE(1637), + [sym_do_statement] = STATE(1637), + [sym_for_statement] = STATE(1637), + [sym__expression] = STATE(457), + [sym_comma_expression] = STATE(455), + [sym_bitwise_expression] = STATE(457), + [sym_equality_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_switch_statement] = STATE(1637), + [sym_return_statement] = STATE(1637), + [sym_break_statement] = STATE(1637), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_relational_expression] = STATE(457), + [sym_shift_expression] = STATE(457), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1637), + [anon_sym_LBRACE] = ACTIONS(1114), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1144), + [sym_false] = ACTIONS(1116), + [sym_identifier] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1650] = { + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1651] = { + [sym_while_statement] = STATE(1448), + [sym_continue_statement] = STATE(1448), + [sym_goto_statement] = STATE(1448), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1448), + [sym_expression_statement] = STATE(1448), + [sym_if_statement] = STATE(1448), + [sym_do_statement] = STATE(1448), + [sym_for_statement] = STATE(1448), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1448), + [sym_return_statement] = STATE(1448), + [sym_break_statement] = STATE(1448), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1448), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1652] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4382), + [sym_comment] = ACTIONS(3), + }, + [1653] = { + [aux_sym_for_statement_repeat1] = STATE(1656), + [sym_argument_list] = STATE(154), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(316), + [anon_sym_LPAREN2] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(4382), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(326), + }, + [1654] = { + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1655] = { + [sym_while_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1519), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), + }, + [1656] = { + [aux_sym_for_statement_repeat1] = STATE(934), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + }, + [1657] = { + [sym_while_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_pointer_expression] = STATE(35), + [sym_logical_expression] = STATE(42), + [sym_math_expression] = STATE(42), + [sym_cast_expression] = STATE(42), + [sym_field_expression] = STATE(35), + [sym_compound_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym__expression] = STATE(42), + [sym_comma_expression] = STATE(37), + [sym_bitwise_expression] = STATE(42), + [sym_equality_expression] = STATE(42), + [sym_sizeof_expression] = STATE(42), + [sym_compound_literal_expression] = STATE(42), + [sym_parenthesized_expression] = STATE(42), + [sym_char_literal] = STATE(42), + [sym_concatenated_string] = STATE(42), + [sym_switch_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_conditional_expression] = STATE(42), + [sym_assignment_expression] = STATE(42), + [sym_relational_expression] = STATE(42), + [sym_shift_expression] = STATE(42), + [sym_subscript_expression] = STATE(35), + [sym_call_expression] = STATE(35), + [sym_string_literal] = STATE(38), + [sym_labeled_statement] = STATE(1568), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_null] = ACTIONS(11), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN2] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(39), + [sym_true] = ACTIONS(11), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_break] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(51), + [sym_number_literal] = ACTIONS(55), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(3848), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(61), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(3850), + [anon_sym_return] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3852), + [anon_sym_continue] = ACTIONS(73), [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(81), }, }; @@ -65871,2079 +66619,2098 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), [5] = {.count = 1, .reusable = true}, SHIFT(2), - [7] = {.count = 1, .reusable = true}, SHIFT(3), - [9] = {.count = 1, .reusable = false}, SHIFT(4), - [11] = {.count = 1, .reusable = false}, SHIFT(5), - [13] = {.count = 1, .reusable = false}, SHIFT(37), - [15] = {.count = 1, .reusable = false}, SHIFT(40), - [17] = {.count = 1, .reusable = false}, SHIFT(39), - [19] = {.count = 1, .reusable = false}, SHIFT(6), + [7] = {.count = 1, .reusable = false}, SHIFT(3), + [9] = {.count = 1, .reusable = true}, SHIFT(33), + [11] = {.count = 1, .reusable = false}, SHIFT(42), + [13] = {.count = 1, .reusable = false}, SHIFT(5), + [15] = {.count = 1, .reusable = false}, SHIFT(36), + [17] = {.count = 1, .reusable = false}, SHIFT(21), + [19] = {.count = 1, .reusable = false}, SHIFT(34), [21] = {.count = 1, .reusable = false}, SHIFT(7), [23] = {.count = 1, .reusable = false}, SHIFT(8), - [25] = {.count = 1, .reusable = true}, SHIFT(9), - [27] = {.count = 1, .reusable = false}, SHIFT(10), - [29] = {.count = 1, .reusable = true}, SHIFT(40), - [31] = {.count = 1, .reusable = false}, SHIFT(11), - [33] = {.count = 1, .reusable = true}, SHIFT(12), - [35] = {.count = 1, .reusable = false}, SHIFT(13), + [25] = {.count = 1, .reusable = false}, SHIFT(15), + [27] = {.count = 1, .reusable = true}, SHIFT(9), + [29] = {.count = 1, .reusable = false}, SHIFT(10), + [31] = {.count = 1, .reusable = true}, SHIFT(11), + [33] = {.count = 1, .reusable = false}, SHIFT(12), + [35] = {.count = 1, .reusable = true}, SHIFT(13), [37] = {.count = 1, .reusable = false}, SHIFT(14), - [39] = {.count = 1, .reusable = false}, SHIFT(15), - [41] = {.count = 1, .reusable = false}, SHIFT(16), - [43] = {.count = 1, .reusable = true}, SHIFT(17), - [45] = {.count = 1, .reusable = false}, SHIFT(2), + [39] = {.count = 1, .reusable = true}, SHIFT(15), + [41] = {.count = 1, .reusable = false}, SHIFT(44), + [43] = {.count = 1, .reusable = false}, SHIFT(16), + [45] = {.count = 1, .reusable = false}, SHIFT(17), [47] = {.count = 1, .reusable = false}, SHIFT(18), [49] = {.count = 1, .reusable = false}, SHIFT(19), - [51] = {.count = 1, .reusable = false}, SHIFT(20), - [53] = {.count = 1, .reusable = false}, SHIFT(21), - [55] = {.count = 1, .reusable = false}, SHIFT(22), + [51] = {.count = 1, .reusable = true}, SHIFT(20), + [53] = {.count = 1, .reusable = false}, SHIFT(22), + [55] = {.count = 1, .reusable = true}, SHIFT(42), [57] = {.count = 1, .reusable = false}, SHIFT(23), [59] = {.count = 1, .reusable = false}, SHIFT(24), - [61] = {.count = 1, .reusable = true}, SHIFT(25), + [61] = {.count = 1, .reusable = false}, SHIFT(25), [63] = {.count = 1, .reusable = false}, SHIFT(26), - [65] = {.count = 1, .reusable = true}, SHIFT(27), + [65] = {.count = 1, .reusable = false}, SHIFT(27), [67] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), [69] = {.count = 1, .reusable = false}, SHIFT(28), [71] = {.count = 1, .reusable = false}, SHIFT(29), [73] = {.count = 1, .reusable = false}, SHIFT(30), [75] = {.count = 1, .reusable = true}, SHIFT(31), [77] = {.count = 1, .reusable = false}, SHIFT(32), - [79] = {.count = 1, .reusable = true}, SHIFT(33), - [81] = {.count = 1, .reusable = false}, SHIFT(34), - [83] = {.count = 1, .reusable = false}, SHIFT(44), - [85] = {.count = 1, .reusable = true}, SHIFT(44), - [87] = {.count = 1, .reusable = true}, SHIFT(45), - [89] = {.count = 1, .reusable = true}, SHIFT(46), - [91] = {.count = 1, .reusable = false}, SHIFT(47), - [93] = {.count = 1, .reusable = false}, SHIFT(58), - [95] = {.count = 1, .reusable = false}, SHIFT(52), - [97] = {.count = 1, .reusable = false}, SHIFT(59), - [99] = {.count = 1, .reusable = true}, SHIFT(48), - [101] = {.count = 1, .reusable = true}, SHIFT(49), - [103] = {.count = 1, .reusable = true}, SHIFT(52), - [105] = {.count = 1, .reusable = false}, SHIFT(45), - [107] = {.count = 1, .reusable = true}, SHIFT(50), - [109] = {.count = 1, .reusable = false}, SHIFT(51), - [111] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(60), - [115] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [117] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [119] = {.count = 1, .reusable = true}, SHIFT(61), - [121] = {.count = 1, .reusable = true}, SHIFT(62), - [123] = {.count = 1, .reusable = false}, SHIFT(62), - [125] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [127] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [130] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [133] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [135] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [137] = {.count = 1, .reusable = true}, SHIFT(63), - [139] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [141] = {.count = 1, .reusable = true}, SHIFT(64), - [143] = {.count = 1, .reusable = false}, SHIFT(65), - [145] = {.count = 1, .reusable = false}, SHIFT(66), - [147] = {.count = 1, .reusable = false}, SHIFT(67), - [149] = {.count = 1, .reusable = true}, SHIFT(67), - [151] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [153] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [155] = {.count = 1, .reusable = false}, SHIFT(71), - [157] = {.count = 1, .reusable = false}, SHIFT(68), - [159] = {.count = 1, .reusable = false}, SHIFT(70), - [161] = {.count = 1, .reusable = true}, SHIFT(72), - [163] = {.count = 1, .reusable = true}, SHIFT(73), - [165] = {.count = 1, .reusable = false}, SHIFT(78), - [167] = {.count = 1, .reusable = false}, SHIFT(72), - [169] = {.count = 1, .reusable = false}, SHIFT(74), - [171] = {.count = 1, .reusable = true}, SHIFT(75), - [173] = {.count = 1, .reusable = true}, SHIFT(76), - [175] = {.count = 1, .reusable = true}, SHIFT(78), - [177] = {.count = 1, .reusable = true}, SHIFT(79), - [179] = {.count = 1, .reusable = true}, SHIFT(82), - [181] = {.count = 1, .reusable = true}, SHIFT(84), - [183] = {.count = 1, .reusable = true}, SHIFT(85), - [185] = {.count = 1, .reusable = false}, SHIFT(87), - [187] = {.count = 1, .reusable = true}, SHIFT(87), - [189] = {.count = 1, .reusable = true}, SHIFT(88), - [191] = {.count = 1, .reusable = true}, SHIFT(89), - [193] = {.count = 1, .reusable = false}, SHIFT(90), - [195] = {.count = 1, .reusable = false}, SHIFT(97), - [197] = {.count = 1, .reusable = false}, SHIFT(88), - [199] = {.count = 1, .reusable = false}, SHIFT(91), - [201] = {.count = 1, .reusable = true}, SHIFT(92), - [203] = {.count = 1, .reusable = true}, SHIFT(93), - [205] = {.count = 1, .reusable = true}, SHIFT(97), - [207] = {.count = 1, .reusable = true}, SHIFT(94), - [209] = {.count = 1, .reusable = true}, SHIFT(95), - [211] = {.count = 1, .reusable = true}, SHIFT(98), - [213] = {.count = 1, .reusable = true}, SHIFT(99), - [215] = {.count = 1, .reusable = true}, SHIFT(100), - [217] = {.count = 1, .reusable = true}, SHIFT(101), - [219] = {.count = 1, .reusable = true}, SHIFT(103), - [221] = {.count = 1, .reusable = false}, SHIFT(104), - [223] = {.count = 1, .reusable = true}, SHIFT(104), - [225] = {.count = 1, .reusable = true}, SHIFT(105), - [227] = {.count = 1, .reusable = true}, SHIFT(106), - [229] = {.count = 1, .reusable = true}, SHIFT(108), - [231] = {.count = 1, .reusable = false}, SHIFT(108), - [233] = {.count = 1, .reusable = true}, SHIFT(109), - [235] = {.count = 1, .reusable = false}, SHIFT(111), - [237] = {.count = 1, .reusable = true}, SHIFT(112), - [239] = {.count = 1, .reusable = true}, SHIFT(113), - [241] = {.count = 1, .reusable = false}, SHIFT(114), - [243] = {.count = 1, .reusable = false}, SHIFT(115), - [245] = {.count = 1, .reusable = false}, SHIFT(117), - [247] = {.count = 1, .reusable = false}, SHIFT(118), - [249] = {.count = 1, .reusable = false}, SHIFT(116), - [251] = {.count = 1, .reusable = true}, SHIFT(120), - [253] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [255] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [257] = {.count = 1, .reusable = true}, SHIFT(121), - [259] = {.count = 1, .reusable = false}, SHIFT(122), - [261] = {.count = 1, .reusable = false}, SHIFT(123), - [263] = {.count = 1, .reusable = false}, SHIFT(124), - [265] = {.count = 1, .reusable = false}, SHIFT(125), - [267] = {.count = 1, .reusable = true}, SHIFT(126), - [269] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [271] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [273] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [275] = {.count = 1, .reusable = false}, SHIFT(131), + [79] = {.count = 1, .reusable = true}, SHIFT(6), + [81] = {.count = 1, .reusable = false}, SHIFT(4), + [83] = {.count = 1, .reusable = true}, SHIFT(45), + [85] = {.count = 1, .reusable = false}, SHIFT(46), + [87] = {.count = 1, .reusable = false}, SHIFT(47), + [89] = {.count = 1, .reusable = false}, SHIFT(48), + [91] = {.count = 1, .reusable = false}, SHIFT(49), + [93] = {.count = 1, .reusable = true}, SHIFT(51), + [95] = {.count = 1, .reusable = true}, SHIFT(52), + [97] = {.count = 1, .reusable = false}, SHIFT(55), + [99] = {.count = 1, .reusable = true}, SHIFT(55), + [101] = {.count = 1, .reusable = false}, SHIFT(35), + [103] = {.count = 1, .reusable = true}, SHIFT(54), + [105] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [107] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [109] = {.count = 1, .reusable = true}, SHIFT(57), + [111] = {.count = 1, .reusable = false}, SHIFT(56), + [113] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [115] = {.count = 1, .reusable = false}, SHIFT(58), + [117] = {.count = 1, .reusable = false}, SHIFT(62), + [119] = {.count = 1, .reusable = false}, SHIFT(59), + [121] = {.count = 1, .reusable = false}, SHIFT(60), + [123] = {.count = 1, .reusable = false}, SHIFT(61), + [125] = {.count = 1, .reusable = true}, SHIFT(64), + [127] = {.count = 1, .reusable = false}, SHIFT(65), + [129] = {.count = 1, .reusable = true}, SHIFT(65), + [131] = {.count = 1, .reusable = true}, SHIFT(66), + [133] = {.count = 1, .reusable = false}, SHIFT(67), + [135] = {.count = 1, .reusable = false}, SHIFT(74), + [137] = {.count = 1, .reusable = true}, SHIFT(68), + [139] = {.count = 1, .reusable = true}, SHIFT(74), + [141] = {.count = 1, .reusable = false}, SHIFT(69), + [143] = {.count = 1, .reusable = true}, SHIFT(69), + [145] = {.count = 1, .reusable = true}, SHIFT(70), + [147] = {.count = 1, .reusable = true}, SHIFT(71), + [149] = {.count = 1, .reusable = false}, SHIFT(72), + [151] = {.count = 1, .reusable = false}, SHIFT(75), + [153] = {.count = 1, .reusable = false}, SHIFT(85), + [155] = {.count = 1, .reusable = false}, SHIFT(84), + [157] = {.count = 1, .reusable = true}, SHIFT(76), + [159] = {.count = 1, .reusable = true}, SHIFT(77), + [161] = {.count = 1, .reusable = true}, SHIFT(78), + [163] = {.count = 1, .reusable = true}, SHIFT(79), + [165] = {.count = 1, .reusable = false}, SHIFT(89), + [167] = {.count = 1, .reusable = true}, SHIFT(80), + [169] = {.count = 1, .reusable = true}, SHIFT(85), + [171] = {.count = 1, .reusable = false}, SHIFT(79), + [173] = {.count = 1, .reusable = false}, SHIFT(81), + [175] = {.count = 1, .reusable = false}, SHIFT(82), + [177] = {.count = 1, .reusable = false}, SHIFT(91), + [179] = {.count = 1, .reusable = false}, SHIFT(94), + [181] = {.count = 1, .reusable = false}, SHIFT(93), + [183] = {.count = 1, .reusable = false}, SHIFT(95), + [185] = {.count = 1, .reusable = true}, SHIFT(95), + [187] = {.count = 1, .reusable = true}, SHIFT(96), + [189] = {.count = 1, .reusable = true}, SHIFT(97), + [191] = {.count = 1, .reusable = true}, SHIFT(98), + [193] = {.count = 1, .reusable = true}, SHIFT(99), + [195] = {.count = 1, .reusable = true}, SHIFT(100), + [197] = {.count = 1, .reusable = false}, SHIFT(101), + [199] = {.count = 1, .reusable = true}, SHIFT(101), + [201] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [203] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [205] = {.count = 1, .reusable = true}, SHIFT(103), + [207] = {.count = 1, .reusable = true}, SHIFT(105), + [209] = {.count = 1, .reusable = true}, SHIFT(107), + [211] = {.count = 1, .reusable = true}, SHIFT(109), + [213] = {.count = 1, .reusable = true}, SHIFT(110), + [215] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [217] = {.count = 1, .reusable = true}, SHIFT(112), + [219] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [221] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [223] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(113), + [227] = {.count = 1, .reusable = false}, SHIFT(112), + [229] = {.count = 1, .reusable = true}, SHIFT(114), + [231] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [234] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [237] = {.count = 1, .reusable = false}, SHIFT(124), + [239] = {.count = 1, .reusable = true}, SHIFT(115), + [241] = {.count = 1, .reusable = true}, SHIFT(124), + [243] = {.count = 1, .reusable = false}, SHIFT(116), + [245] = {.count = 1, .reusable = true}, SHIFT(117), + [247] = {.count = 1, .reusable = true}, SHIFT(116), + [249] = {.count = 1, .reusable = true}, SHIFT(118), + [251] = {.count = 1, .reusable = false}, SHIFT(119), + [253] = {.count = 1, .reusable = true}, SHIFT(120), + [255] = {.count = 1, .reusable = true}, SHIFT(121), + [257] = {.count = 1, .reusable = false}, SHIFT(122), + [259] = {.count = 1, .reusable = true}, SHIFT(126), + [261] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [263] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [265] = {.count = 1, .reusable = true}, SHIFT(127), + [267] = {.count = 1, .reusable = false}, SHIFT(128), + [269] = {.count = 1, .reusable = true}, SHIFT(128), + [271] = {.count = 1, .reusable = true}, SHIFT(129), + [273] = {.count = 1, .reusable = false}, SHIFT(132), + [275] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), [277] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [279] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(133), - [282] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [284] = {.count = 1, .reusable = false}, SHIFT(135), - [286] = {.count = 1, .reusable = false}, SHIFT(134), - [288] = {.count = 1, .reusable = true}, SHIFT(136), - [290] = {.count = 1, .reusable = true}, SHIFT(137), + [279] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(130), + [282] = {.count = 1, .reusable = false}, SHIFT(131), + [284] = {.count = 1, .reusable = true}, SHIFT(133), + [286] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [288] = {.count = 1, .reusable = false}, SHIFT(136), + [290] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), [292] = {.count = 1, .reusable = true}, SHIFT(138), [294] = {.count = 1, .reusable = true}, SHIFT(139), [296] = {.count = 1, .reusable = true}, SHIFT(140), - [298] = {.count = 1, .reusable = false}, SHIFT(141), - [300] = {.count = 1, .reusable = true}, SHIFT(142), - [302] = {.count = 1, .reusable = false}, SHIFT(143), - [304] = {.count = 1, .reusable = true}, SHIFT(144), - [306] = {.count = 1, .reusable = false}, SHIFT(145), - [308] = {.count = 1, .reusable = true}, SHIFT(145), - [310] = {.count = 1, .reusable = true}, SHIFT(146), + [298] = {.count = 1, .reusable = true}, SHIFT(141), + [300] = {.count = 1, .reusable = true}, SHIFT(153), + [302] = {.count = 1, .reusable = true}, SHIFT(143), + [304] = {.count = 1, .reusable = false}, SHIFT(144), + [306] = {.count = 1, .reusable = true}, SHIFT(145), + [308] = {.count = 1, .reusable = false}, SHIFT(140), + [310] = {.count = 1, .reusable = false}, SHIFT(146), [312] = {.count = 1, .reusable = true}, SHIFT(147), [314] = {.count = 1, .reusable = true}, SHIFT(148), [316] = {.count = 1, .reusable = true}, SHIFT(149), - [318] = {.count = 1, .reusable = false}, SHIFT(150), + [318] = {.count = 1, .reusable = true}, SHIFT(150), [320] = {.count = 1, .reusable = true}, SHIFT(151), - [322] = {.count = 1, .reusable = true}, SHIFT(152), - [324] = {.count = 1, .reusable = false}, SHIFT(148), - [326] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [328] = {.count = 1, .reusable = true}, SHIFT(154), - [330] = {.count = 1, .reusable = true}, SHIFT(157), - [332] = {.count = 1, .reusable = true}, SHIFT(155), - [334] = {.count = 1, .reusable = true}, SHIFT(156), - [336] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [338] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [340] = {.count = 1, .reusable = false}, SHIFT(54), - [342] = {.count = 1, .reusable = false}, SHIFT(160), - [344] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [346] = {.count = 1, .reusable = true}, SHIFT(160), - [348] = {.count = 1, .reusable = true}, SHIFT(161), - [350] = {.count = 1, .reusable = true}, SHIFT(162), - [352] = {.count = 1, .reusable = false}, SHIFT(161), - [354] = {.count = 1, .reusable = false}, SHIFT(163), - [356] = {.count = 1, .reusable = true}, SHIFT(164), - [358] = {.count = 1, .reusable = true}, SHIFT(165), - [360] = {.count = 1, .reusable = true}, SHIFT(167), - [362] = {.count = 1, .reusable = false}, SHIFT(168), - [364] = {.count = 1, .reusable = true}, SHIFT(168), - [366] = {.count = 1, .reusable = true}, SHIFT(169), - [368] = {.count = 1, .reusable = true}, SHIFT(170), - [370] = {.count = 1, .reusable = true}, SHIFT(171), - [372] = {.count = 1, .reusable = true}, SHIFT(172), - [374] = {.count = 1, .reusable = false}, SHIFT(173), - [376] = {.count = 1, .reusable = false}, SHIFT(174), - [378] = {.count = 1, .reusable = true}, SHIFT(175), - [380] = {.count = 1, .reusable = false}, SHIFT(176), - [382] = {.count = 1, .reusable = true}, SHIFT(176), - [384] = {.count = 1, .reusable = true}, SHIFT(177), - [386] = {.count = 1, .reusable = true}, SHIFT(178), - [388] = {.count = 1, .reusable = false}, SHIFT(179), - [390] = {.count = 1, .reusable = true}, SHIFT(180), - [392] = {.count = 1, .reusable = true}, SHIFT(181), - [394] = {.count = 1, .reusable = false}, SHIFT(178), - [396] = {.count = 1, .reusable = true}, SHIFT(182), - [398] = {.count = 1, .reusable = false}, SHIFT(184), - [400] = {.count = 1, .reusable = true}, SHIFT(186), - [402] = {.count = 1, .reusable = true}, SHIFT(5), - [404] = {.count = 1, .reusable = true}, SHIFT(188), - [406] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [408] = {.count = 1, .reusable = true}, SHIFT(187), - [410] = {.count = 1, .reusable = false}, SHIFT(192), - [412] = {.count = 1, .reusable = false}, SHIFT(133), - [414] = {.count = 1, .reusable = false}, SHIFT(194), - [416] = {.count = 1, .reusable = false}, SHIFT(196), - [418] = {.count = 1, .reusable = true}, SHIFT(196), - [420] = {.count = 1, .reusable = false}, SHIFT(197), - [422] = {.count = 1, .reusable = false}, SHIFT(201), - [424] = {.count = 1, .reusable = false}, SHIFT(199), - [426] = {.count = 1, .reusable = false}, SHIFT(203), - [428] = {.count = 1, .reusable = true}, SHIFT(199), - [430] = {.count = 1, .reusable = true}, SHIFT(198), - [432] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [434] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [436] = {.count = 1, .reusable = true}, SHIFT(204), - [438] = {.count = 1, .reusable = false}, SHIFT(205), - [440] = {.count = 1, .reusable = false}, SHIFT(229), - [442] = {.count = 1, .reusable = false}, SHIFT(206), - [444] = {.count = 1, .reusable = false}, SHIFT(207), - [446] = {.count = 1, .reusable = false}, SHIFT(208), - [448] = {.count = 1, .reusable = false}, SHIFT(209), - [450] = {.count = 1, .reusable = false}, SHIFT(210), - [452] = {.count = 1, .reusable = true}, SHIFT(229), - [454] = {.count = 1, .reusable = false}, SHIFT(211), - [456] = {.count = 1, .reusable = false}, SHIFT(212), - [458] = {.count = 1, .reusable = false}, SHIFT(213), - [460] = {.count = 1, .reusable = false}, SHIFT(214), - [462] = {.count = 1, .reusable = false}, SHIFT(215), - [464] = {.count = 1, .reusable = false}, SHIFT(216), - [466] = {.count = 1, .reusable = false}, SHIFT(217), - [468] = {.count = 1, .reusable = false}, SHIFT(218), - [470] = {.count = 1, .reusable = false}, SHIFT(219), - [472] = {.count = 1, .reusable = false}, SHIFT(220), - [474] = {.count = 1, .reusable = false}, SHIFT(221), - [476] = {.count = 1, .reusable = false}, SHIFT(222), - [478] = {.count = 1, .reusable = true}, SHIFT(223), - [480] = {.count = 1, .reusable = false}, SHIFT(224), - [482] = {.count = 1, .reusable = false}, SHIFT(225), - [484] = {.count = 1, .reusable = true}, SHIFT(226), - [486] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [488] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [490] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(60), - [493] = {.count = 1, .reusable = false}, SHIFT(232), - [495] = {.count = 1, .reusable = true}, SHIFT(233), - [497] = {.count = 1, .reusable = true}, SHIFT(235), - [499] = {.count = 1, .reusable = true}, SHIFT(234), - [501] = {.count = 1, .reusable = false}, SHIFT(237), - [503] = {.count = 1, .reusable = true}, SHIFT(239), - [505] = {.count = 1, .reusable = false}, SHIFT(240), - [507] = {.count = 1, .reusable = true}, SHIFT(240), - [509] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [511] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [513] = {.count = 1, .reusable = false}, SHIFT(253), - [515] = {.count = 1, .reusable = true}, SHIFT(253), - [517] = {.count = 1, .reusable = false}, SHIFT(255), - [519] = {.count = 1, .reusable = false}, SHIFT(256), - [521] = {.count = 1, .reusable = false}, SHIFT(257), - [523] = {.count = 1, .reusable = false}, SHIFT(258), - [525] = {.count = 1, .reusable = true}, SHIFT(261), - [527] = {.count = 1, .reusable = true}, SHIFT(265), - [529] = {.count = 1, .reusable = true}, SHIFT(263), - [531] = {.count = 1, .reusable = true}, SHIFT(264), - [533] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [535] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [537] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [539] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [541] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [543] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [545] = {.count = 1, .reusable = true}, SHIFT(269), - [547] = {.count = 1, .reusable = false}, SHIFT(269), - [549] = {.count = 1, .reusable = true}, SHIFT(270), - [551] = {.count = 1, .reusable = false}, SHIFT(271), - [553] = {.count = 1, .reusable = true}, SHIFT(271), - [555] = {.count = 1, .reusable = true}, SHIFT(272), - [557] = {.count = 1, .reusable = true}, SHIFT(273), - [559] = {.count = 1, .reusable = false}, SHIFT(272), - [561] = {.count = 1, .reusable = false}, SHIFT(274), - [563] = {.count = 1, .reusable = true}, SHIFT(275), - [565] = {.count = 1, .reusable = true}, SHIFT(276), - [567] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [569] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [571] = {.count = 1, .reusable = true}, SHIFT(279), - [573] = {.count = 1, .reusable = true}, SHIFT(280), - [575] = {.count = 1, .reusable = true}, SHIFT(281), - [577] = {.count = 1, .reusable = false}, SHIFT(282), - [579] = {.count = 1, .reusable = false}, SHIFT(283), - [581] = {.count = 1, .reusable = true}, SHIFT(284), - [583] = {.count = 1, .reusable = false}, SHIFT(285), - [585] = {.count = 1, .reusable = true}, SHIFT(285), - [587] = {.count = 1, .reusable = true}, SHIFT(286), - [589] = {.count = 1, .reusable = true}, SHIFT(287), - [591] = {.count = 1, .reusable = false}, SHIFT(288), - [593] = {.count = 1, .reusable = true}, SHIFT(289), - [595] = {.count = 1, .reusable = true}, SHIFT(290), - [597] = {.count = 1, .reusable = false}, SHIFT(287), - [599] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [601] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [603] = {.count = 1, .reusable = false}, SHIFT(291), - [605] = {.count = 1, .reusable = false}, SHIFT(294), - [607] = {.count = 1, .reusable = true}, SHIFT(295), - [609] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [611] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [613] = {.count = 1, .reusable = true}, SHIFT(296), - [615] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [617] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [619] = {.count = 1, .reusable = false}, SHIFT(300), - [621] = {.count = 1, .reusable = false}, SHIFT(305), - [623] = {.count = 1, .reusable = false}, SHIFT(307), - [625] = {.count = 1, .reusable = false}, SHIFT(301), - [627] = {.count = 1, .reusable = false}, SHIFT(302), - [629] = {.count = 1, .reusable = true}, SHIFT(303), - [631] = {.count = 1, .reusable = false}, SHIFT(304), - [633] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [635] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [637] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [639] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [641] = {.count = 1, .reusable = true}, SHIFT(311), - [643] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [645] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [647] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [649] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [651] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [653] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [655] = {.count = 1, .reusable = false}, SHIFT(313), - [657] = {.count = 1, .reusable = true}, SHIFT(314), - [659] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [661] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [663] = {.count = 1, .reusable = true}, SHIFT(315), - [665] = {.count = 1, .reusable = true}, SHIFT(316), - [667] = {.count = 1, .reusable = true}, SHIFT(320), - [669] = {.count = 1, .reusable = true}, SHIFT(321), - [671] = {.count = 1, .reusable = false}, SHIFT(322), - [673] = {.count = 1, .reusable = true}, SHIFT(324), - [675] = {.count = 1, .reusable = true}, SHIFT(323), + [322] = {.count = 1, .reusable = false}, SHIFT(152), + [324] = {.count = 1, .reusable = false}, SHIFT(138), + [326] = {.count = 1, .reusable = true}, SHIFT(142), + [328] = {.count = 1, .reusable = true}, SHIFT(158), + [330] = {.count = 1, .reusable = true}, SHIFT(155), + [332] = {.count = 1, .reusable = true}, SHIFT(156), + [334] = {.count = 1, .reusable = true}, SHIFT(157), + [336] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [338] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), + [340] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [342] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [344] = {.count = 1, .reusable = true}, SHIFT(161), + [346] = {.count = 1, .reusable = true}, SHIFT(163), + [348] = {.count = 1, .reusable = true}, SHIFT(165), + [350] = {.count = 1, .reusable = false}, SHIFT(167), + [352] = {.count = 1, .reusable = false}, SHIFT(174), + [354] = {.count = 1, .reusable = false}, SHIFT(168), + [356] = {.count = 1, .reusable = false}, SHIFT(169), + [358] = {.count = 1, .reusable = true}, SHIFT(170), + [360] = {.count = 1, .reusable = false}, SHIFT(171), + [362] = {.count = 1, .reusable = false}, SHIFT(172), + [364] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [366] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [368] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [370] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [372] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [374] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [376] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [378] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [380] = {.count = 1, .reusable = true}, SHIFT(180), + [382] = {.count = 1, .reusable = false}, SHIFT(179), + [384] = {.count = 1, .reusable = true}, SHIFT(183), + [386] = {.count = 1, .reusable = true}, SHIFT(185), + [388] = {.count = 1, .reusable = true}, SHIFT(186), + [390] = {.count = 1, .reusable = true}, SHIFT(187), + [392] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [394] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [396] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [398] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [400] = {.count = 1, .reusable = true}, SHIFT(188), + [402] = {.count = 1, .reusable = false}, SHIFT(191), + [404] = {.count = 1, .reusable = true}, SHIFT(191), + [406] = {.count = 1, .reusable = true}, SHIFT(190), + [408] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [410] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [412] = {.count = 1, .reusable = false}, SHIFT(229), + [414] = {.count = 1, .reusable = false}, SHIFT(206), + [416] = {.count = 1, .reusable = false}, SHIFT(210), + [418] = {.count = 1, .reusable = false}, SHIFT(211), + [420] = {.count = 1, .reusable = false}, SHIFT(214), + [422] = {.count = 1, .reusable = true}, SHIFT(229), + [424] = {.count = 1, .reusable = false}, SHIFT(216), + [426] = {.count = 1, .reusable = false}, SHIFT(221), + [428] = {.count = 1, .reusable = false}, SHIFT(224), + [430] = {.count = 1, .reusable = true}, SHIFT(204), + [432] = {.count = 1, .reusable = false}, SHIFT(205), + [434] = {.count = 1, .reusable = false}, SHIFT(207), + [436] = {.count = 1, .reusable = false}, SHIFT(208), + [438] = {.count = 1, .reusable = false}, SHIFT(209), + [440] = {.count = 1, .reusable = false}, SHIFT(212), + [442] = {.count = 1, .reusable = false}, SHIFT(213), + [444] = {.count = 1, .reusable = false}, SHIFT(215), + [446] = {.count = 1, .reusable = false}, SHIFT(217), + [448] = {.count = 1, .reusable = false}, SHIFT(218), + [450] = {.count = 1, .reusable = false}, SHIFT(219), + [452] = {.count = 1, .reusable = false}, SHIFT(220), + [454] = {.count = 1, .reusable = false}, SHIFT(222), + [456] = {.count = 1, .reusable = true}, SHIFT(223), + [458] = {.count = 1, .reusable = false}, SHIFT(225), + [460] = {.count = 1, .reusable = false}, SHIFT(83), + [462] = {.count = 1, .reusable = true}, SHIFT(231), + [464] = {.count = 1, .reusable = false}, SHIFT(232), + [466] = {.count = 1, .reusable = true}, SHIFT(232), + [468] = {.count = 1, .reusable = true}, SHIFT(233), + [470] = {.count = 1, .reusable = true}, SHIFT(234), + [472] = {.count = 1, .reusable = false}, SHIFT(235), + [474] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [476] = {.count = 1, .reusable = true}, SHIFT(238), + [478] = {.count = 1, .reusable = false}, SHIFT(238), + [480] = {.count = 1, .reusable = false}, SHIFT(240), + [482] = {.count = 1, .reusable = true}, SHIFT(240), + [484] = {.count = 1, .reusable = true}, SHIFT(239), + [486] = {.count = 1, .reusable = false}, SHIFT(241), + [488] = {.count = 1, .reusable = false}, SHIFT(130), + [490] = {.count = 1, .reusable = true}, SHIFT(242), + [492] = {.count = 1, .reusable = true}, SHIFT(243), + [494] = {.count = 1, .reusable = true}, SHIFT(244), + [496] = {.count = 1, .reusable = true}, SHIFT(245), + [498] = {.count = 1, .reusable = true}, SHIFT(254), + [500] = {.count = 1, .reusable = true}, SHIFT(246), + [502] = {.count = 1, .reusable = false}, SHIFT(247), + [504] = {.count = 1, .reusable = false}, SHIFT(244), + [506] = {.count = 1, .reusable = false}, SHIFT(248), + [508] = {.count = 1, .reusable = true}, SHIFT(249), + [510] = {.count = 1, .reusable = true}, SHIFT(250), + [512] = {.count = 1, .reusable = true}, SHIFT(251), + [514] = {.count = 1, .reusable = false}, SHIFT(242), + [516] = {.count = 1, .reusable = false}, SHIFT(252), + [518] = {.count = 1, .reusable = true}, SHIFT(253), + [520] = {.count = 1, .reusable = true}, SHIFT(255), + [522] = {.count = 1, .reusable = false}, SHIFT(257), + [524] = {.count = 1, .reusable = true}, SHIFT(5), + [526] = {.count = 1, .reusable = true}, SHIFT(259), + [528] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [530] = {.count = 1, .reusable = true}, SHIFT(258), + [532] = {.count = 1, .reusable = true}, SHIFT(260), + [534] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(113), + [537] = {.count = 1, .reusable = false}, SHIFT(265), + [539] = {.count = 1, .reusable = true}, SHIFT(266), + [541] = {.count = 1, .reusable = true}, SHIFT(267), + [543] = {.count = 1, .reusable = true}, SHIFT(268), + [545] = {.count = 1, .reusable = false}, SHIFT(270), + [547] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [549] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [551] = {.count = 1, .reusable = false}, SHIFT(274), + [553] = {.count = 1, .reusable = false}, SHIFT(273), + [555] = {.count = 1, .reusable = false}, SHIFT(276), + [557] = {.count = 1, .reusable = true}, SHIFT(274), + [559] = {.count = 1, .reusable = false}, SHIFT(271), + [561] = {.count = 1, .reusable = true}, SHIFT(272), + [563] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [565] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [567] = {.count = 1, .reusable = false}, SHIFT(278), + [569] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [571] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [573] = {.count = 1, .reusable = true}, SHIFT(282), + [575] = {.count = 1, .reusable = false}, SHIFT(281), + [577] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [579] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [581] = {.count = 1, .reusable = true}, SHIFT(283), + [583] = {.count = 1, .reusable = false}, SHIFT(286), + [585] = {.count = 1, .reusable = true}, SHIFT(286), + [587] = {.count = 1, .reusable = false}, SHIFT(291), + [589] = {.count = 1, .reusable = false}, SHIFT(288), + [591] = {.count = 1, .reusable = false}, SHIFT(289), + [593] = {.count = 1, .reusable = false}, SHIFT(290), + [595] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [597] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [599] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [601] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [603] = {.count = 1, .reusable = true}, SHIFT(294), + [605] = {.count = 1, .reusable = true}, SHIFT(296), + [607] = {.count = 1, .reusable = true}, SHIFT(297), + [609] = {.count = 1, .reusable = true}, SHIFT(298), + [611] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [613] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [615] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [617] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [619] = {.count = 1, .reusable = false}, SHIFT(301), + [621] = {.count = 1, .reusable = true}, SHIFT(301), + [623] = {.count = 1, .reusable = false}, SHIFT(303), + [625] = {.count = 1, .reusable = true}, SHIFT(305), + [627] = {.count = 1, .reusable = false}, SHIFT(306), + [629] = {.count = 1, .reusable = true}, SHIFT(306), + [631] = {.count = 1, .reusable = true}, SHIFT(307), + [633] = {.count = 1, .reusable = true}, SHIFT(308), + [635] = {.count = 1, .reusable = false}, SHIFT(309), + [637] = {.count = 1, .reusable = true}, SHIFT(311), + [639] = {.count = 1, .reusable = false}, SHIFT(311), + [641] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [643] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [645] = {.count = 1, .reusable = false}, SHIFT(314), + [647] = {.count = 1, .reusable = true}, SHIFT(314), + [649] = {.count = 1, .reusable = true}, SHIFT(313), + [651] = {.count = 1, .reusable = true}, SHIFT(316), + [653] = {.count = 1, .reusable = true}, SHIFT(317), + [655] = {.count = 1, .reusable = true}, SHIFT(318), + [657] = {.count = 1, .reusable = true}, SHIFT(319), + [659] = {.count = 1, .reusable = true}, SHIFT(327), + [661] = {.count = 1, .reusable = false}, SHIFT(320), + [663] = {.count = 1, .reusable = false}, SHIFT(318), + [665] = {.count = 1, .reusable = false}, SHIFT(321), + [667] = {.count = 1, .reusable = true}, SHIFT(322), + [669] = {.count = 1, .reusable = true}, SHIFT(323), + [671] = {.count = 1, .reusable = true}, SHIFT(324), + [673] = {.count = 1, .reusable = false}, SHIFT(316), + [675] = {.count = 1, .reusable = false}, SHIFT(325), [677] = {.count = 1, .reusable = true}, SHIFT(326), - [679] = {.count = 1, .reusable = true}, SHIFT(327), - [681] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [683] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [685] = {.count = 1, .reusable = true}, SHIFT(330), - [687] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [689] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [727] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [733] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [742] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [745] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [748] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [751] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [754] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [757] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [760] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [793] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [796] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [804] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [806] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [808] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [810] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5), - [813] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(10), - [816] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [818] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [820] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [822] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [824] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(135), - [829] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [831] = {.count = 1, .reusable = false}, SHIFT(336), - [833] = {.count = 1, .reusable = true}, SHIFT(336), - [835] = {.count = 1, .reusable = true}, SHIFT(335), - [837] = {.count = 1, .reusable = false}, SHIFT(337), - [839] = {.count = 1, .reusable = true}, SHIFT(337), - [841] = {.count = 1, .reusable = false}, SHIFT(338), - [843] = {.count = 1, .reusable = true}, SHIFT(338), - [845] = {.count = 1, .reusable = false}, SHIFT(339), - [847] = {.count = 1, .reusable = true}, SHIFT(339), - [849] = {.count = 1, .reusable = false}, SHIFT(340), - [851] = {.count = 1, .reusable = true}, SHIFT(340), - [853] = {.count = 1, .reusable = false}, SHIFT(341), - [855] = {.count = 1, .reusable = true}, SHIFT(341), - [857] = {.count = 1, .reusable = false}, SHIFT(343), - [859] = {.count = 1, .reusable = true}, SHIFT(343), - [861] = {.count = 1, .reusable = true}, SHIFT(344), - [863] = {.count = 1, .reusable = true}, SHIFT(345), - [865] = {.count = 1, .reusable = false}, SHIFT(346), - [867] = {.count = 1, .reusable = false}, SHIFT(352), - [869] = {.count = 1, .reusable = false}, SHIFT(344), - [871] = {.count = 1, .reusable = false}, SHIFT(347), - [873] = {.count = 1, .reusable = true}, SHIFT(348), - [875] = {.count = 1, .reusable = true}, SHIFT(349), - [877] = {.count = 1, .reusable = true}, SHIFT(352), - [879] = {.count = 1, .reusable = true}, SHIFT(350), - [881] = {.count = 1, .reusable = false}, SHIFT(353), - [883] = {.count = 1, .reusable = true}, SHIFT(353), - [885] = {.count = 1, .reusable = false}, SHIFT(354), - [887] = {.count = 1, .reusable = true}, SHIFT(354), - [889] = {.count = 1, .reusable = true}, SHIFT(355), - [891] = {.count = 1, .reusable = true}, SHIFT(356), - [893] = {.count = 1, .reusable = false}, SHIFT(357), - [895] = {.count = 1, .reusable = false}, SHIFT(363), + [679] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [681] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [683] = {.count = 1, .reusable = false}, SHIFT(329), + [685] = {.count = 1, .reusable = true}, SHIFT(331), + [687] = {.count = 1, .reusable = true}, SHIFT(330), + [689] = {.count = 1, .reusable = true}, SHIFT(333), + [691] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [693] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [695] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [697] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(132), + [702] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [704] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [706] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [708] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [710] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [712] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [714] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [744] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [746] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [764] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), + [770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [818] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [824] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [830] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [832] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [834] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5), + [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(21), + [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(34), + [845] = {.count = 1, .reusable = false}, SHIFT(337), + [847] = {.count = 1, .reusable = true}, SHIFT(337), + [849] = {.count = 1, .reusable = false}, SHIFT(338), + [851] = {.count = 1, .reusable = true}, SHIFT(338), + [853] = {.count = 1, .reusable = false}, SHIFT(339), + [855] = {.count = 1, .reusable = true}, SHIFT(339), + [857] = {.count = 1, .reusable = false}, SHIFT(340), + [859] = {.count = 1, .reusable = true}, SHIFT(340), + [861] = {.count = 1, .reusable = false}, SHIFT(349), + [863] = {.count = 1, .reusable = true}, SHIFT(341), + [865] = {.count = 1, .reusable = true}, SHIFT(349), + [867] = {.count = 1, .reusable = false}, SHIFT(342), + [869] = {.count = 1, .reusable = true}, SHIFT(343), + [871] = {.count = 1, .reusable = true}, SHIFT(342), + [873] = {.count = 1, .reusable = true}, SHIFT(344), + [875] = {.count = 1, .reusable = false}, SHIFT(345), + [877] = {.count = 1, .reusable = true}, SHIFT(346), + [879] = {.count = 1, .reusable = false}, SHIFT(347), + [881] = {.count = 1, .reusable = false}, SHIFT(350), + [883] = {.count = 1, .reusable = true}, SHIFT(350), + [885] = {.count = 1, .reusable = false}, SHIFT(352), + [887] = {.count = 1, .reusable = true}, SHIFT(352), + [889] = {.count = 1, .reusable = false}, SHIFT(353), + [891] = {.count = 1, .reusable = true}, SHIFT(353), + [893] = {.count = 1, .reusable = false}, SHIFT(354), + [895] = {.count = 1, .reusable = true}, SHIFT(354), [897] = {.count = 1, .reusable = false}, SHIFT(355), - [899] = {.count = 1, .reusable = false}, SHIFT(358), - [901] = {.count = 1, .reusable = true}, SHIFT(359), - [903] = {.count = 1, .reusable = true}, SHIFT(360), - [905] = {.count = 1, .reusable = true}, SHIFT(363), - [907] = {.count = 1, .reusable = true}, SHIFT(361), - [909] = {.count = 1, .reusable = false}, SHIFT(364), - [911] = {.count = 1, .reusable = true}, SHIFT(364), - [913] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [915] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [917] = {.count = 1, .reusable = false}, SHIFT(365), - [919] = {.count = 1, .reusable = true}, SHIFT(365), - [921] = {.count = 1, .reusable = false}, SHIFT(366), - [923] = {.count = 1, .reusable = true}, SHIFT(366), - [925] = {.count = 1, .reusable = true}, SHIFT(367), - [927] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [929] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [931] = {.count = 1, .reusable = true}, SHIFT(369), - [933] = {.count = 1, .reusable = true}, SHIFT(368), - [935] = {.count = 1, .reusable = false}, SHIFT(370), - [937] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [939] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [941] = {.count = 1, .reusable = true}, SHIFT(372), + [899] = {.count = 1, .reusable = true}, SHIFT(355), + [901] = {.count = 1, .reusable = true}, SHIFT(356), + [903] = {.count = 1, .reusable = false}, SHIFT(358), + [905] = {.count = 1, .reusable = true}, SHIFT(358), + [907] = {.count = 1, .reusable = true}, SHIFT(357), + [909] = {.count = 1, .reusable = false}, SHIFT(359), + [911] = {.count = 1, .reusable = true}, SHIFT(359), + [913] = {.count = 1, .reusable = false}, SHIFT(360), + [915] = {.count = 1, .reusable = true}, SHIFT(360), + [917] = {.count = 1, .reusable = false}, SHIFT(369), + [919] = {.count = 1, .reusable = true}, SHIFT(361), + [921] = {.count = 1, .reusable = true}, SHIFT(369), + [923] = {.count = 1, .reusable = false}, SHIFT(362), + [925] = {.count = 1, .reusable = true}, SHIFT(363), + [927] = {.count = 1, .reusable = true}, SHIFT(362), + [929] = {.count = 1, .reusable = true}, SHIFT(364), + [931] = {.count = 1, .reusable = false}, SHIFT(365), + [933] = {.count = 1, .reusable = true}, SHIFT(366), + [935] = {.count = 1, .reusable = false}, SHIFT(367), + [937] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [939] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [941] = {.count = 1, .reusable = false}, SHIFT(370), [943] = {.count = 1, .reusable = true}, SHIFT(373), - [945] = {.count = 1, .reusable = true}, SHIFT(374), - [947] = {.count = 1, .reusable = true}, SHIFT(375), - [949] = {.count = 1, .reusable = true}, SHIFT(376), - [951] = {.count = 1, .reusable = true}, SHIFT(380), - [953] = {.count = 1, .reusable = false}, SHIFT(381), - [955] = {.count = 1, .reusable = true}, SHIFT(381), - [957] = {.count = 1, .reusable = true}, SHIFT(383), - [959] = {.count = 1, .reusable = false}, SHIFT(384), - [961] = {.count = 1, .reusable = true}, SHIFT(384), - [963] = {.count = 1, .reusable = false}, SHIFT(398), - [965] = {.count = 1, .reusable = true}, SHIFT(398), - [967] = {.count = 1, .reusable = false}, SHIFT(399), - [969] = {.count = 1, .reusable = true}, SHIFT(399), - [971] = {.count = 1, .reusable = false}, SHIFT(400), - [973] = {.count = 1, .reusable = true}, SHIFT(400), - [975] = {.count = 1, .reusable = false}, SHIFT(401), - [977] = {.count = 1, .reusable = true}, SHIFT(401), - [979] = {.count = 1, .reusable = false}, SHIFT(402), - [981] = {.count = 1, .reusable = true}, SHIFT(402), - [983] = {.count = 1, .reusable = false}, SHIFT(403), - [985] = {.count = 1, .reusable = true}, SHIFT(403), - [987] = {.count = 1, .reusable = false}, SHIFT(404), - [989] = {.count = 1, .reusable = true}, SHIFT(404), - [991] = {.count = 1, .reusable = false}, SHIFT(405), - [993] = {.count = 1, .reusable = true}, SHIFT(405), - [995] = {.count = 1, .reusable = false}, SHIFT(406), - [997] = {.count = 1, .reusable = true}, SHIFT(406), - [999] = {.count = 1, .reusable = false}, SHIFT(407), - [1001] = {.count = 1, .reusable = true}, SHIFT(407), - [1003] = {.count = 1, .reusable = false}, SHIFT(408), - [1005] = {.count = 1, .reusable = true}, SHIFT(408), - [1007] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1009] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1011] = {.count = 1, .reusable = false}, SHIFT(410), - [1013] = {.count = 1, .reusable = true}, SHIFT(410), - [1015] = {.count = 1, .reusable = true}, SHIFT(409), - [1017] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1019] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), - [1022] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [1024] = {.count = 1, .reusable = false}, SHIFT(417), - [1026] = {.count = 1, .reusable = false}, SHIFT(419), - [1028] = {.count = 1, .reusable = true}, SHIFT(415), - [1030] = {.count = 1, .reusable = true}, SHIFT(416), - [1032] = {.count = 1, .reusable = false}, SHIFT(424), - [1034] = {.count = 1, .reusable = true}, SHIFT(424), - [1036] = {.count = 1, .reusable = true}, SHIFT(422), - [1038] = {.count = 1, .reusable = true}, SHIFT(423), - [1040] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1042] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [1044] = {.count = 1, .reusable = true}, SHIFT(429), - [1046] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(192), - [1049] = {.count = 1, .reusable = true}, SHIFT(431), - [1051] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 3), - [1053] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 3), - [1055] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [1057] = {.count = 1, .reusable = false}, SHIFT(433), - [1059] = {.count = 1, .reusable = true}, SHIFT(433), - [1061] = {.count = 1, .reusable = true}, SHIFT(432), - [1063] = {.count = 1, .reusable = true}, SHIFT(434), - [1065] = {.count = 1, .reusable = true}, SHIFT(436), - [1067] = {.count = 1, .reusable = true}, SHIFT(435), - [1069] = {.count = 1, .reusable = false}, SHIFT(438), - [1071] = {.count = 1, .reusable = false}, SHIFT(439), - [1073] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [1075] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [1077] = {.count = 1, .reusable = true}, SHIFT(440), - [1079] = {.count = 1, .reusable = true}, SHIFT(441), - [1081] = {.count = 1, .reusable = false}, SHIFT(442), - [1083] = {.count = 1, .reusable = false}, SHIFT(461), - [1085] = {.count = 1, .reusable = false}, SHIFT(443), - [1087] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [1089] = {.count = 1, .reusable = false}, SHIFT(444), - [1091] = {.count = 1, .reusable = false}, SHIFT(445), - [1093] = {.count = 1, .reusable = true}, SHIFT(461), - [1095] = {.count = 1, .reusable = false}, SHIFT(446), - [1097] = {.count = 1, .reusable = false}, SHIFT(447), - [1099] = {.count = 1, .reusable = false}, SHIFT(448), - [1101] = {.count = 1, .reusable = false}, SHIFT(449), - [1103] = {.count = 1, .reusable = false}, SHIFT(450), - [1105] = {.count = 1, .reusable = false}, SHIFT(451), - [1107] = {.count = 1, .reusable = false}, SHIFT(452), - [1109] = {.count = 1, .reusable = false}, SHIFT(453), - [1111] = {.count = 1, .reusable = false}, SHIFT(454), - [1113] = {.count = 1, .reusable = false}, SHIFT(455), - [1115] = {.count = 1, .reusable = false}, SHIFT(456), - [1117] = {.count = 1, .reusable = false}, SHIFT(457), - [1119] = {.count = 1, .reusable = true}, SHIFT(458), - [1121] = {.count = 1, .reusable = false}, SHIFT(459), - [1123] = {.count = 1, .reusable = true}, SHIFT(460), - [1125] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [1127] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [1129] = {.count = 1, .reusable = true}, SHIFT(465), - [1131] = {.count = 1, .reusable = false}, SHIFT(466), - [1133] = {.count = 1, .reusable = false}, SHIFT(467), - [1135] = {.count = 1, .reusable = false}, SHIFT(469), - [1137] = {.count = 1, .reusable = false}, SHIFT(474), - [1139] = {.count = 1, .reusable = true}, SHIFT(474), - [1141] = {.count = 1, .reusable = true}, SHIFT(473), - [1143] = {.count = 1, .reusable = true}, SHIFT(475), - [1145] = {.count = 1, .reusable = true}, SHIFT(476), - [1147] = {.count = 1, .reusable = true}, SHIFT(477), - [1149] = {.count = 1, .reusable = true}, SHIFT(478), - [1151] = {.count = 1, .reusable = true}, SHIFT(480), - [1153] = {.count = 1, .reusable = true}, SHIFT(482), - [1155] = {.count = 1, .reusable = false}, SHIFT(483), - [1157] = {.count = 1, .reusable = true}, SHIFT(484), - [1159] = {.count = 1, .reusable = true}, SHIFT(485), - [1161] = {.count = 1, .reusable = true}, SHIFT(487), - [1163] = {.count = 1, .reusable = false}, SHIFT(487), - [1165] = {.count = 1, .reusable = true}, SHIFT(490), - [1167] = {.count = 1, .reusable = true}, SHIFT(492), - [1169] = {.count = 1, .reusable = true}, SHIFT(491), - [1171] = {.count = 1, .reusable = true}, SHIFT(495), - [1173] = {.count = 1, .reusable = false}, SHIFT(235), - [1175] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [1177] = {.count = 1, .reusable = true}, SHIFT(499), - [1179] = {.count = 1, .reusable = true}, SHIFT(500), - [1181] = {.count = 1, .reusable = true}, SHIFT(501), - [1183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(237), - [1186] = {.count = 1, .reusable = true}, SHIFT(504), - [1188] = {.count = 1, .reusable = false}, SHIFT(250), - [1190] = {.count = 1, .reusable = false}, SHIFT(246), - [1192] = {.count = 1, .reusable = false}, SHIFT(243), - [1194] = {.count = 1, .reusable = false}, SHIFT(508), - [1196] = {.count = 1, .reusable = true}, SHIFT(508), - [1198] = {.count = 1, .reusable = false}, SHIFT(509), - [1200] = {.count = 1, .reusable = true}, SHIFT(509), - [1202] = {.count = 1, .reusable = false}, SHIFT(510), - [1204] = {.count = 1, .reusable = true}, SHIFT(510), - [1206] = {.count = 1, .reusable = false}, SHIFT(511), - [1208] = {.count = 1, .reusable = true}, SHIFT(511), - [1210] = {.count = 1, .reusable = false}, SHIFT(512), - [1212] = {.count = 1, .reusable = true}, SHIFT(512), - [1214] = {.count = 1, .reusable = false}, SHIFT(513), - [1216] = {.count = 1, .reusable = true}, SHIFT(513), - [1218] = {.count = 1, .reusable = false}, SHIFT(514), - [1220] = {.count = 1, .reusable = true}, SHIFT(514), - [1222] = {.count = 1, .reusable = false}, SHIFT(515), - [1224] = {.count = 1, .reusable = true}, SHIFT(515), - [1226] = {.count = 1, .reusable = false}, SHIFT(516), - [1228] = {.count = 1, .reusable = true}, SHIFT(516), - [1230] = {.count = 1, .reusable = false}, SHIFT(517), - [1232] = {.count = 1, .reusable = true}, SHIFT(517), - [1234] = {.count = 1, .reusable = true}, SHIFT(518), - [1236] = {.count = 1, .reusable = true}, SHIFT(519), - [1238] = {.count = 1, .reusable = true}, SHIFT(520), - [1240] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [1242] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [1244] = {.count = 1, .reusable = false}, SHIFT(523), - [1246] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1248] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1250] = {.count = 1, .reusable = false}, SHIFT(524), - [1252] = {.count = 1, .reusable = false}, SHIFT(525), - [1254] = {.count = 1, .reusable = false}, SHIFT(526), - [1256] = {.count = 1, .reusable = true}, SHIFT(527), - [1258] = {.count = 1, .reusable = false}, SHIFT(528), - [1260] = {.count = 1, .reusable = false}, SHIFT(529), - [1262] = {.count = 1, .reusable = false}, SHIFT(530), - [1264] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [1266] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [1268] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1270] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1272] = {.count = 1, .reusable = true}, SHIFT(532), - [1274] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [1276] = {.count = 1, .reusable = true}, SHIFT(533), - [1278] = {.count = 1, .reusable = true}, SHIFT(534), - [1280] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1282] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1284] = {.count = 1, .reusable = true}, SHIFT(536), - [1286] = {.count = 1, .reusable = false}, SHIFT(537), - [1288] = {.count = 1, .reusable = true}, SHIFT(537), - [1290] = {.count = 1, .reusable = true}, SHIFT(540), - [1292] = {.count = 1, .reusable = false}, SHIFT(541), - [1294] = {.count = 1, .reusable = true}, SHIFT(541), - [1296] = {.count = 1, .reusable = false}, SHIFT(555), - [1298] = {.count = 1, .reusable = true}, SHIFT(555), - [1300] = {.count = 1, .reusable = false}, SHIFT(556), - [1302] = {.count = 1, .reusable = true}, SHIFT(556), - [1304] = {.count = 1, .reusable = false}, SHIFT(557), - [1306] = {.count = 1, .reusable = true}, SHIFT(557), - [1308] = {.count = 1, .reusable = false}, SHIFT(558), - [1310] = {.count = 1, .reusable = true}, SHIFT(558), - [1312] = {.count = 1, .reusable = false}, SHIFT(559), - [1314] = {.count = 1, .reusable = true}, SHIFT(559), - [1316] = {.count = 1, .reusable = false}, SHIFT(560), - [1318] = {.count = 1, .reusable = true}, SHIFT(560), - [1320] = {.count = 1, .reusable = false}, SHIFT(561), - [1322] = {.count = 1, .reusable = true}, SHIFT(561), - [1324] = {.count = 1, .reusable = false}, SHIFT(562), - [1326] = {.count = 1, .reusable = true}, SHIFT(562), - [1328] = {.count = 1, .reusable = false}, SHIFT(563), - [1330] = {.count = 1, .reusable = true}, SHIFT(563), - [1332] = {.count = 1, .reusable = false}, SHIFT(564), - [1334] = {.count = 1, .reusable = true}, SHIFT(564), - [1336] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1338] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1340] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [1342] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [1344] = {.count = 1, .reusable = true}, SHIFT(565), - [1346] = {.count = 1, .reusable = false}, SHIFT(565), - [1348] = {.count = 1, .reusable = false}, SHIFT(567), - [1350] = {.count = 1, .reusable = true}, SHIFT(568), - [1352] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [1354] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [1356] = {.count = 1, .reusable = true}, SHIFT(570), - [1358] = {.count = 1, .reusable = true}, SHIFT(571), - [1360] = {.count = 1, .reusable = true}, SHIFT(572), - [1362] = {.count = 1, .reusable = false}, SHIFT(573), - [1364] = {.count = 1, .reusable = false}, SHIFT(574), - [1366] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [1368] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [1370] = {.count = 1, .reusable = true}, SHIFT(575), - [1372] = {.count = 1, .reusable = false}, SHIFT(577), - [1374] = {.count = 1, .reusable = false}, SHIFT(578), - [1376] = {.count = 1, .reusable = true}, SHIFT(579), - [1378] = {.count = 1, .reusable = true}, SHIFT(580), - [1380] = {.count = 1, .reusable = true}, SHIFT(581), - [1382] = {.count = 1, .reusable = true}, SHIFT(582), - [1384] = {.count = 1, .reusable = true}, SHIFT(583), - [1386] = {.count = 1, .reusable = true}, SHIFT(586), - [1388] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1390] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1392] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1394] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1396] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1398] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1400] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [1402] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [1404] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [1406] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(314), - [1409] = {.count = 1, .reusable = false}, SHIFT(589), - [1411] = {.count = 1, .reusable = true}, SHIFT(589), - [1413] = {.count = 1, .reusable = true}, SHIFT(588), - [1415] = {.count = 1, .reusable = true}, SHIFT(590), - [1417] = {.count = 1, .reusable = false}, SHIFT(591), - [1419] = {.count = 1, .reusable = false}, SHIFT(592), - [1421] = {.count = 1, .reusable = false}, SHIFT(593), - [1423] = {.count = 1, .reusable = false}, SHIFT(594), - [1425] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 4), - [1427] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 4), - [1429] = {.count = 1, .reusable = true}, SHIFT(597), - [1431] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [1433] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [1435] = {.count = 1, .reusable = true}, SHIFT(598), - [1437] = {.count = 1, .reusable = true}, SHIFT(599), - [1439] = {.count = 1, .reusable = true}, SHIFT(600), - [1441] = {.count = 1, .reusable = false}, SHIFT(601), - [1443] = {.count = 1, .reusable = false}, SHIFT(602), - [1445] = {.count = 1, .reusable = false}, SHIFT(604), - [1447] = {.count = 1, .reusable = true}, SHIFT(604), - [1449] = {.count = 1, .reusable = true}, SHIFT(603), - [1451] = {.count = 1, .reusable = false}, SHIFT(605), - [1453] = {.count = 1, .reusable = false}, SHIFT(606), - [1455] = {.count = 1, .reusable = false}, SHIFT(607), - [1457] = {.count = 1, .reusable = false}, SHIFT(608), - [1459] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1461] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(122), - [1466] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(123), - [1469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(124), - [1472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(125), - [1475] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1477] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1479] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(27), - [1482] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1484] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [1486] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [1488] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1490] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1492] = {.count = 1, .reusable = true}, SHIFT(610), - [1494] = {.count = 1, .reusable = true}, SHIFT(611), - [1496] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [1498] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [1500] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [1502] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [1504] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [1506] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [1508] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [1510] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [1512] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [1514] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [1516] = {.count = 1, .reusable = true}, SHIFT(614), - [1518] = {.count = 1, .reusable = false}, SHIFT(614), - [1520] = {.count = 1, .reusable = true}, SHIFT(615), - [1522] = {.count = 1, .reusable = false}, SHIFT(616), - [1524] = {.count = 1, .reusable = true}, SHIFT(616), - [1526] = {.count = 1, .reusable = true}, SHIFT(617), - [1528] = {.count = 1, .reusable = true}, SHIFT(618), - [1530] = {.count = 1, .reusable = false}, SHIFT(617), - [1532] = {.count = 1, .reusable = false}, SHIFT(619), - [1534] = {.count = 1, .reusable = true}, SHIFT(620), - [1536] = {.count = 1, .reusable = true}, SHIFT(621), - [1538] = {.count = 1, .reusable = true}, SHIFT(624), - [1540] = {.count = 1, .reusable = true}, SHIFT(625), - [1542] = {.count = 1, .reusable = true}, SHIFT(626), - [1544] = {.count = 1, .reusable = false}, SHIFT(627), - [1546] = {.count = 1, .reusable = true}, SHIFT(628), - [1548] = {.count = 1, .reusable = false}, SHIFT(629), - [1550] = {.count = 1, .reusable = true}, SHIFT(630), - [1552] = {.count = 1, .reusable = false}, SHIFT(631), - [1554] = {.count = 1, .reusable = true}, SHIFT(631), - [1556] = {.count = 1, .reusable = true}, SHIFT(632), - [1558] = {.count = 1, .reusable = true}, SHIFT(633), - [1560] = {.count = 1, .reusable = false}, SHIFT(634), - [1562] = {.count = 1, .reusable = true}, SHIFT(635), - [1564] = {.count = 1, .reusable = false}, SHIFT(633), - [1566] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [1568] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [1570] = {.count = 1, .reusable = true}, SHIFT(637), - [1572] = {.count = 1, .reusable = false}, SHIFT(637), - [1574] = {.count = 1, .reusable = true}, SHIFT(638), - [1576] = {.count = 1, .reusable = false}, SHIFT(639), - [1578] = {.count = 1, .reusable = true}, SHIFT(639), - [1580] = {.count = 1, .reusable = true}, SHIFT(640), - [1582] = {.count = 1, .reusable = true}, SHIFT(641), - [1584] = {.count = 1, .reusable = false}, SHIFT(640), - [1586] = {.count = 1, .reusable = false}, SHIFT(642), - [1588] = {.count = 1, .reusable = true}, SHIFT(643), - [1590] = {.count = 1, .reusable = true}, SHIFT(644), - [1592] = {.count = 1, .reusable = true}, SHIFT(647), - [1594] = {.count = 1, .reusable = true}, SHIFT(648), - [1596] = {.count = 1, .reusable = true}, SHIFT(649), - [1598] = {.count = 1, .reusable = false}, SHIFT(650), - [1600] = {.count = 1, .reusable = false}, SHIFT(652), - [1602] = {.count = 1, .reusable = true}, SHIFT(653), - [1604] = {.count = 1, .reusable = false}, SHIFT(654), - [1606] = {.count = 1, .reusable = true}, SHIFT(654), - [1608] = {.count = 1, .reusable = true}, SHIFT(655), - [1610] = {.count = 1, .reusable = true}, SHIFT(656), - [1612] = {.count = 1, .reusable = false}, SHIFT(657), - [1614] = {.count = 1, .reusable = true}, SHIFT(658), - [1616] = {.count = 1, .reusable = false}, SHIFT(656), - [1618] = {.count = 1, .reusable = true}, SHIFT(651), - [1620] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1622] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1624] = {.count = 1, .reusable = true}, SHIFT(660), - [1626] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [1628] = {.count = 1, .reusable = false}, SHIFT(661), - [1630] = {.count = 1, .reusable = false}, SHIFT(665), - [1632] = {.count = 1, .reusable = true}, SHIFT(665), - [1634] = {.count = 1, .reusable = true}, SHIFT(663), - [1636] = {.count = 1, .reusable = true}, SHIFT(664), - [1638] = {.count = 1, .reusable = false}, SHIFT(667), + [945] = {.count = 1, .reusable = true}, SHIFT(372), + [947] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [949] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [951] = {.count = 1, .reusable = true}, SHIFT(374), + [953] = {.count = 1, .reusable = true}, SHIFT(378), + [955] = {.count = 1, .reusable = true}, SHIFT(376), + [957] = {.count = 1, .reusable = true}, SHIFT(377), + [959] = {.count = 1, .reusable = true}, SHIFT(375), + [961] = {.count = 1, .reusable = false}, SHIFT(384), + [963] = {.count = 1, .reusable = true}, SHIFT(384), + [965] = {.count = 1, .reusable = true}, SHIFT(383), + [967] = {.count = 1, .reusable = false}, SHIFT(388), + [969] = {.count = 1, .reusable = false}, SHIFT(385), + [971] = {.count = 1, .reusable = false}, SHIFT(386), + [973] = {.count = 1, .reusable = false}, SHIFT(387), + [975] = {.count = 1, .reusable = false}, SHIFT(390), + [977] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [979] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [981] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(48), + [984] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), + [987] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(47), + [990] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(49), + [993] = {.count = 1, .reusable = true}, SHIFT(391), + [995] = {.count = 1, .reusable = true}, SHIFT(392), + [997] = {.count = 1, .reusable = false}, SHIFT(393), + [999] = {.count = 1, .reusable = false}, SHIFT(394), + [1001] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [1003] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [1005] = {.count = 1, .reusable = true}, SHIFT(395), + [1007] = {.count = 1, .reusable = true}, SHIFT(397), + [1009] = {.count = 1, .reusable = false}, SHIFT(399), + [1011] = {.count = 1, .reusable = false}, SHIFT(400), + [1013] = {.count = 1, .reusable = true}, SHIFT(401), + [1015] = {.count = 1, .reusable = true}, SHIFT(402), + [1017] = {.count = 1, .reusable = true}, SHIFT(403), + [1019] = {.count = 1, .reusable = true}, SHIFT(404), + [1021] = {.count = 1, .reusable = true}, SHIFT(405), + [1023] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1025] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1027] = {.count = 1, .reusable = true}, SHIFT(408), + [1029] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1031] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1033] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(180), + [1036] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [1038] = {.count = 1, .reusable = true}, SHIFT(409), + [1040] = {.count = 1, .reusable = false}, SHIFT(413), + [1042] = {.count = 1, .reusable = false}, SHIFT(410), + [1044] = {.count = 1, .reusable = false}, SHIFT(411), + [1046] = {.count = 1, .reusable = false}, SHIFT(412), + [1048] = {.count = 1, .reusable = false}, SHIFT(416), + [1050] = {.count = 1, .reusable = true}, SHIFT(416), + [1052] = {.count = 1, .reusable = true}, SHIFT(415), + [1054] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1056] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1058] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [1060] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [1062] = {.count = 1, .reusable = true}, SHIFT(419), + [1064] = {.count = 1, .reusable = false}, SHIFT(193), + [1066] = {.count = 1, .reusable = false}, SHIFT(201), + [1068] = {.count = 1, .reusable = false}, SHIFT(197), + [1070] = {.count = 1, .reusable = false}, SHIFT(422), + [1072] = {.count = 1, .reusable = true}, SHIFT(422), + [1074] = {.count = 1, .reusable = false}, SHIFT(423), + [1076] = {.count = 1, .reusable = true}, SHIFT(423), + [1078] = {.count = 1, .reusable = false}, SHIFT(424), + [1080] = {.count = 1, .reusable = true}, SHIFT(424), + [1082] = {.count = 1, .reusable = false}, SHIFT(425), + [1084] = {.count = 1, .reusable = true}, SHIFT(425), + [1086] = {.count = 1, .reusable = false}, SHIFT(426), + [1088] = {.count = 1, .reusable = true}, SHIFT(426), + [1090] = {.count = 1, .reusable = false}, SHIFT(427), + [1092] = {.count = 1, .reusable = true}, SHIFT(427), + [1094] = {.count = 1, .reusable = false}, SHIFT(428), + [1096] = {.count = 1, .reusable = true}, SHIFT(428), + [1098] = {.count = 1, .reusable = false}, SHIFT(429), + [1100] = {.count = 1, .reusable = true}, SHIFT(429), + [1102] = {.count = 1, .reusable = false}, SHIFT(430), + [1104] = {.count = 1, .reusable = true}, SHIFT(430), + [1106] = {.count = 1, .reusable = false}, SHIFT(431), + [1108] = {.count = 1, .reusable = true}, SHIFT(431), + [1110] = {.count = 1, .reusable = true}, SHIFT(432), + [1112] = {.count = 1, .reusable = true}, SHIFT(435), + [1114] = {.count = 1, .reusable = true}, SHIFT(436), + [1116] = {.count = 1, .reusable = false}, SHIFT(457), + [1118] = {.count = 1, .reusable = false}, SHIFT(437), + [1120] = {.count = 1, .reusable = false}, SHIFT(438), + [1122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [1124] = {.count = 1, .reusable = false}, SHIFT(439), + [1126] = {.count = 1, .reusable = false}, SHIFT(440), + [1128] = {.count = 1, .reusable = false}, SHIFT(441), + [1130] = {.count = 1, .reusable = false}, SHIFT(442), + [1132] = {.count = 1, .reusable = false}, SHIFT(443), + [1134] = {.count = 1, .reusable = false}, SHIFT(444), + [1136] = {.count = 1, .reusable = false}, SHIFT(445), + [1138] = {.count = 1, .reusable = false}, SHIFT(446), + [1140] = {.count = 1, .reusable = true}, SHIFT(457), + [1142] = {.count = 1, .reusable = false}, SHIFT(447), + [1144] = {.count = 1, .reusable = false}, SHIFT(448), + [1146] = {.count = 1, .reusable = false}, SHIFT(449), + [1148] = {.count = 1, .reusable = false}, SHIFT(450), + [1150] = {.count = 1, .reusable = false}, SHIFT(451), + [1152] = {.count = 1, .reusable = false}, SHIFT(452), + [1154] = {.count = 1, .reusable = true}, SHIFT(453), + [1156] = {.count = 1, .reusable = false}, SHIFT(454), + [1158] = {.count = 1, .reusable = true}, SHIFT(459), + [1160] = {.count = 1, .reusable = false}, SHIFT(460), + [1162] = {.count = 1, .reusable = false}, SHIFT(461), + [1164] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [1166] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [1168] = {.count = 1, .reusable = false}, SHIFT(463), + [1170] = {.count = 1, .reusable = true}, SHIFT(464), + [1172] = {.count = 1, .reusable = true}, SHIFT(465), + [1174] = {.count = 1, .reusable = true}, SHIFT(466), + [1176] = {.count = 1, .reusable = true}, SHIFT(467), + [1178] = {.count = 1, .reusable = true}, SHIFT(468), + [1180] = {.count = 1, .reusable = true}, SHIFT(472), + [1182] = {.count = 1, .reusable = false}, SHIFT(474), + [1184] = {.count = 1, .reusable = true}, SHIFT(474), + [1186] = {.count = 1, .reusable = true}, SHIFT(473), + [1188] = {.count = 1, .reusable = true}, SHIFT(476), + [1190] = {.count = 1, .reusable = false}, SHIFT(477), + [1192] = {.count = 1, .reusable = true}, SHIFT(478), + [1194] = {.count = 1, .reusable = true}, SHIFT(479), + [1196] = {.count = 1, .reusable = true}, SHIFT(480), + [1198] = {.count = 1, .reusable = false}, SHIFT(479), + [1200] = {.count = 1, .reusable = true}, SHIFT(484), + [1202] = {.count = 1, .reusable = true}, SHIFT(483), + [1204] = {.count = 1, .reusable = false}, SHIFT(488), + [1206] = {.count = 1, .reusable = true}, SHIFT(488), + [1208] = {.count = 1, .reusable = true}, SHIFT(487), + [1210] = {.count = 1, .reusable = true}, SHIFT(501), + [1212] = {.count = 1, .reusable = false}, SHIFT(502), + [1214] = {.count = 1, .reusable = true}, SHIFT(502), + [1216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(241), + [1219] = {.count = 1, .reusable = false}, SHIFT(504), + [1221] = {.count = 1, .reusable = true}, SHIFT(504), + [1223] = {.count = 1, .reusable = false}, SHIFT(505), + [1225] = {.count = 1, .reusable = true}, SHIFT(505), + [1227] = {.count = 1, .reusable = false}, SHIFT(506), + [1229] = {.count = 1, .reusable = true}, SHIFT(506), + [1231] = {.count = 1, .reusable = false}, SHIFT(507), + [1233] = {.count = 1, .reusable = true}, SHIFT(507), + [1235] = {.count = 1, .reusable = false}, SHIFT(508), + [1237] = {.count = 1, .reusable = true}, SHIFT(508), + [1239] = {.count = 1, .reusable = false}, SHIFT(509), + [1241] = {.count = 1, .reusable = true}, SHIFT(509), + [1243] = {.count = 1, .reusable = false}, SHIFT(510), + [1245] = {.count = 1, .reusable = true}, SHIFT(510), + [1247] = {.count = 1, .reusable = false}, SHIFT(511), + [1249] = {.count = 1, .reusable = true}, SHIFT(511), + [1251] = {.count = 1, .reusable = false}, SHIFT(512), + [1253] = {.count = 1, .reusable = true}, SHIFT(512), + [1255] = {.count = 1, .reusable = false}, SHIFT(513), + [1257] = {.count = 1, .reusable = true}, SHIFT(513), + [1259] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1261] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1263] = {.count = 1, .reusable = false}, SHIFT(514), + [1265] = {.count = 1, .reusable = true}, SHIFT(514), + [1267] = {.count = 1, .reusable = true}, SHIFT(515), + [1269] = {.count = 1, .reusable = false}, SHIFT(517), + [1271] = {.count = 1, .reusable = true}, SHIFT(517), + [1273] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), + [1278] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [1280] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1282] = {.count = 1, .reusable = false}, SHIFT(525), + [1284] = {.count = 1, .reusable = true}, SHIFT(522), + [1286] = {.count = 1, .reusable = false}, SHIFT(524), + [1288] = {.count = 1, .reusable = true}, SHIFT(523), + [1290] = {.count = 1, .reusable = false}, SHIFT(532), + [1292] = {.count = 1, .reusable = true}, SHIFT(532), + [1294] = {.count = 1, .reusable = true}, SHIFT(529), + [1296] = {.count = 1, .reusable = true}, SHIFT(530), + [1298] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [1300] = {.count = 1, .reusable = true}, SHIFT(533), + [1302] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [1304] = {.count = 1, .reusable = false}, SHIFT(266), + [1306] = {.count = 1, .reusable = true}, SHIFT(540), + [1308] = {.count = 1, .reusable = true}, SHIFT(544), + [1310] = {.count = 1, .reusable = true}, SHIFT(543), + [1312] = {.count = 1, .reusable = true}, SHIFT(542), + [1314] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(270), + [1317] = {.count = 1, .reusable = false}, SHIFT(548), + [1319] = {.count = 1, .reusable = true}, SHIFT(548), + [1321] = {.count = 1, .reusable = true}, SHIFT(547), + [1323] = {.count = 1, .reusable = false}, SHIFT(549), + [1325] = {.count = 1, .reusable = true}, SHIFT(550), + [1327] = {.count = 1, .reusable = true}, SHIFT(552), + [1329] = {.count = 1, .reusable = true}, SHIFT(551), + [1331] = {.count = 1, .reusable = false}, SHIFT(554), + [1333] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [1335] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [1337] = {.count = 1, .reusable = true}, SHIFT(555), + [1339] = {.count = 1, .reusable = false}, SHIFT(555), + [1341] = {.count = 1, .reusable = false}, SHIFT(557), + [1343] = {.count = 1, .reusable = true}, SHIFT(558), + [1345] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [1347] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [1349] = {.count = 1, .reusable = true}, SHIFT(560), + [1351] = {.count = 1, .reusable = true}, SHIFT(562), + [1353] = {.count = 1, .reusable = true}, SHIFT(564), + [1355] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [1357] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [1359] = {.count = 1, .reusable = false}, SHIFT(565), + [1361] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1363] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1365] = {.count = 1, .reusable = false}, SHIFT(566), + [1367] = {.count = 1, .reusable = true}, SHIFT(567), + [1369] = {.count = 1, .reusable = false}, SHIFT(568), + [1371] = {.count = 1, .reusable = false}, SHIFT(569), + [1373] = {.count = 1, .reusable = false}, SHIFT(570), + [1375] = {.count = 1, .reusable = false}, SHIFT(571), + [1377] = {.count = 1, .reusable = false}, SHIFT(572), + [1379] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [1381] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [1383] = {.count = 1, .reusable = true}, SHIFT(574), + [1385] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [1387] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [1389] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [1391] = {.count = 1, .reusable = true}, SHIFT(575), + [1393] = {.count = 1, .reusable = true}, SHIFT(576), + [1395] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1397] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1399] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [1401] = {.count = 1, .reusable = true}, SHIFT(578), + [1403] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1405] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1407] = {.count = 1, .reusable = false}, SHIFT(581), + [1409] = {.count = 1, .reusable = true}, SHIFT(581), + [1411] = {.count = 1, .reusable = true}, SHIFT(580), + [1413] = {.count = 1, .reusable = false}, SHIFT(594), + [1415] = {.count = 1, .reusable = true}, SHIFT(594), + [1417] = {.count = 1, .reusable = true}, SHIFT(595), + [1419] = {.count = 1, .reusable = false}, SHIFT(598), + [1421] = {.count = 1, .reusable = true}, SHIFT(598), + [1423] = {.count = 1, .reusable = false}, SHIFT(599), + [1425] = {.count = 1, .reusable = true}, SHIFT(599), + [1427] = {.count = 1, .reusable = false}, SHIFT(600), + [1429] = {.count = 1, .reusable = true}, SHIFT(600), + [1431] = {.count = 1, .reusable = false}, SHIFT(601), + [1433] = {.count = 1, .reusable = true}, SHIFT(601), + [1435] = {.count = 1, .reusable = false}, SHIFT(602), + [1437] = {.count = 1, .reusable = true}, SHIFT(602), + [1439] = {.count = 1, .reusable = false}, SHIFT(603), + [1441] = {.count = 1, .reusable = true}, SHIFT(603), + [1443] = {.count = 1, .reusable = false}, SHIFT(604), + [1445] = {.count = 1, .reusable = true}, SHIFT(604), + [1447] = {.count = 1, .reusable = false}, SHIFT(605), + [1449] = {.count = 1, .reusable = true}, SHIFT(605), + [1451] = {.count = 1, .reusable = false}, SHIFT(606), + [1453] = {.count = 1, .reusable = true}, SHIFT(606), + [1455] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1457] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1459] = {.count = 1, .reusable = false}, SHIFT(607), + [1461] = {.count = 1, .reusable = true}, SHIFT(607), + [1463] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1465] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1467] = {.count = 1, .reusable = true}, SHIFT(608), + [1469] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [1471] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [1473] = {.count = 1, .reusable = true}, SHIFT(609), + [1475] = {.count = 1, .reusable = true}, SHIFT(610), + [1477] = {.count = 1, .reusable = true}, SHIFT(611), + [1479] = {.count = 1, .reusable = false}, SHIFT(612), + [1481] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1483] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1485] = {.count = 1, .reusable = true}, SHIFT(613), + [1487] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1489] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6), + [1494] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1496] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [1498] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [1500] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [1502] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [1504] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [1506] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [1508] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [1510] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [1512] = {.count = 1, .reusable = true}, SHIFT(614), + [1514] = {.count = 1, .reusable = false}, SHIFT(615), + [1516] = {.count = 1, .reusable = true}, SHIFT(615), + [1518] = {.count = 1, .reusable = true}, SHIFT(616), + [1520] = {.count = 1, .reusable = true}, SHIFT(617), + [1522] = {.count = 1, .reusable = false}, SHIFT(618), + [1524] = {.count = 1, .reusable = true}, SHIFT(620), + [1526] = {.count = 1, .reusable = false}, SHIFT(620), + [1528] = {.count = 1, .reusable = false}, SHIFT(623), + [1530] = {.count = 1, .reusable = true}, SHIFT(623), + [1532] = {.count = 1, .reusable = true}, SHIFT(622), + [1534] = {.count = 1, .reusable = true}, SHIFT(625), + [1536] = {.count = 1, .reusable = true}, SHIFT(626), + [1538] = {.count = 1, .reusable = true}, SHIFT(627), + [1540] = {.count = 1, .reusable = true}, SHIFT(628), + [1542] = {.count = 1, .reusable = true}, SHIFT(636), + [1544] = {.count = 1, .reusable = false}, SHIFT(629), + [1546] = {.count = 1, .reusable = false}, SHIFT(627), + [1548] = {.count = 1, .reusable = false}, SHIFT(630), + [1550] = {.count = 1, .reusable = true}, SHIFT(631), + [1552] = {.count = 1, .reusable = true}, SHIFT(632), + [1554] = {.count = 1, .reusable = true}, SHIFT(633), + [1556] = {.count = 1, .reusable = false}, SHIFT(625), + [1558] = {.count = 1, .reusable = false}, SHIFT(634), + [1560] = {.count = 1, .reusable = true}, SHIFT(635), + [1562] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [1564] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [1566] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [1568] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1570] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1572] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1574] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1576] = {.count = 1, .reusable = true}, SHIFT(637), + [1578] = {.count = 1, .reusable = true}, SHIFT(638), + [1580] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [1582] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [1584] = {.count = 1, .reusable = true}, SHIFT(640), + [1586] = {.count = 1, .reusable = false}, SHIFT(641), + [1588] = {.count = 1, .reusable = true}, SHIFT(641), + [1590] = {.count = 1, .reusable = true}, SHIFT(642), + [1592] = {.count = 1, .reusable = true}, SHIFT(643), + [1594] = {.count = 1, .reusable = false}, SHIFT(644), + [1596] = {.count = 1, .reusable = true}, SHIFT(646), + [1598] = {.count = 1, .reusable = false}, SHIFT(646), + [1600] = {.count = 1, .reusable = false}, SHIFT(649), + [1602] = {.count = 1, .reusable = true}, SHIFT(649), + [1604] = {.count = 1, .reusable = true}, SHIFT(648), + [1606] = {.count = 1, .reusable = true}, SHIFT(651), + [1608] = {.count = 1, .reusable = true}, SHIFT(652), + [1610] = {.count = 1, .reusable = true}, SHIFT(653), + [1612] = {.count = 1, .reusable = true}, SHIFT(654), + [1614] = {.count = 1, .reusable = true}, SHIFT(662), + [1616] = {.count = 1, .reusable = false}, SHIFT(655), + [1618] = {.count = 1, .reusable = false}, SHIFT(653), + [1620] = {.count = 1, .reusable = false}, SHIFT(656), + [1622] = {.count = 1, .reusable = true}, SHIFT(657), + [1624] = {.count = 1, .reusable = true}, SHIFT(658), + [1626] = {.count = 1, .reusable = true}, SHIFT(659), + [1628] = {.count = 1, .reusable = false}, SHIFT(651), + [1630] = {.count = 1, .reusable = false}, SHIFT(660), + [1632] = {.count = 1, .reusable = true}, SHIFT(661), + [1634] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [1636] = {.count = 1, .reusable = false}, SHIFT(663), + [1638] = {.count = 1, .reusable = false}, SHIFT(665), [1640] = {.count = 1, .reusable = true}, SHIFT(667), - [1642] = {.count = 1, .reusable = true}, SHIFT(669), - [1644] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [1642] = {.count = 1, .reusable = false}, SHIFT(670), + [1644] = {.count = 1, .reusable = true}, SHIFT(670), [1646] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [1648] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1650] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1652] = {.count = 1, .reusable = true}, SHIFT(671), - [1654] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1648] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [1650] = {.count = 1, .reusable = true}, SHIFT(671), + [1652] = {.count = 1, .reusable = false}, SHIFT(676), + [1654] = {.count = 1, .reusable = true}, SHIFT(676), [1656] = {.count = 1, .reusable = true}, SHIFT(673), - [1658] = {.count = 1, .reusable = false}, SHIFT(394), - [1660] = {.count = 1, .reusable = false}, SHIFT(390), - [1662] = {.count = 1, .reusable = false}, SHIFT(387), - [1664] = {.count = 1, .reusable = false}, SHIFT(677), - [1666] = {.count = 1, .reusable = true}, SHIFT(677), - [1668] = {.count = 1, .reusable = false}, SHIFT(678), - [1670] = {.count = 1, .reusable = true}, SHIFT(678), - [1672] = {.count = 1, .reusable = false}, SHIFT(679), - [1674] = {.count = 1, .reusable = true}, SHIFT(679), - [1676] = {.count = 1, .reusable = false}, SHIFT(680), - [1678] = {.count = 1, .reusable = true}, SHIFT(680), - [1680] = {.count = 1, .reusable = false}, SHIFT(681), - [1682] = {.count = 1, .reusable = true}, SHIFT(681), - [1684] = {.count = 1, .reusable = false}, SHIFT(682), - [1686] = {.count = 1, .reusable = true}, SHIFT(682), - [1688] = {.count = 1, .reusable = false}, SHIFT(683), - [1690] = {.count = 1, .reusable = true}, SHIFT(683), - [1692] = {.count = 1, .reusable = false}, SHIFT(684), - [1694] = {.count = 1, .reusable = true}, SHIFT(684), - [1696] = {.count = 1, .reusable = false}, SHIFT(685), - [1698] = {.count = 1, .reusable = true}, SHIFT(685), - [1700] = {.count = 1, .reusable = false}, SHIFT(686), - [1702] = {.count = 1, .reusable = true}, SHIFT(686), - [1704] = {.count = 1, .reusable = true}, SHIFT(687), - [1706] = {.count = 1, .reusable = true}, SHIFT(688), - [1708] = {.count = 1, .reusable = true}, SHIFT(689), - [1710] = {.count = 1, .reusable = true}, SHIFT(690), - [1712] = {.count = 1, .reusable = false}, SHIFT(691), - [1714] = {.count = 1, .reusable = false}, SHIFT(701), - [1716] = {.count = 1, .reusable = true}, SHIFT(692), - [1718] = {.count = 1, .reusable = false}, SHIFT(689), - [1720] = {.count = 1, .reusable = false}, SHIFT(693), - [1722] = {.count = 1, .reusable = true}, SHIFT(694), - [1724] = {.count = 1, .reusable = true}, SHIFT(695), - [1726] = {.count = 1, .reusable = true}, SHIFT(696), - [1728] = {.count = 1, .reusable = true}, SHIFT(701), - [1730] = {.count = 1, .reusable = true}, SHIFT(697), - [1732] = {.count = 1, .reusable = true}, SHIFT(698), - [1734] = {.count = 1, .reusable = false}, SHIFT(699), - [1736] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [1738] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [1740] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [1742] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [1744] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1746] = {.count = 1, .reusable = true}, SHIFT(705), - [1748] = {.count = 1, .reusable = true}, SHIFT(706), - [1750] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1752] = {.count = 1, .reusable = false}, SHIFT(709), - [1754] = {.count = 1, .reusable = false}, SHIFT(710), - [1756] = {.count = 1, .reusable = true}, SHIFT(711), - [1758] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [1760] = {.count = 1, .reusable = true}, SHIFT(713), - [1762] = {.count = 1, .reusable = true}, SHIFT(712), - [1764] = {.count = 1, .reusable = true}, SHIFT(715), - [1766] = {.count = 1, .reusable = true}, SHIFT(716), - [1768] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1770] = {.count = 1, .reusable = false}, SHIFT(718), - [1772] = {.count = 1, .reusable = true}, SHIFT(718), - [1774] = {.count = 1, .reusable = true}, SHIFT(717), - [1776] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), - [1783] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1785] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1787] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1789] = {.count = 1, .reusable = false}, SHIFT(723), - [1791] = {.count = 1, .reusable = true}, SHIFT(723), - [1793] = {.count = 1, .reusable = true}, SHIFT(722), - [1795] = {.count = 1, .reusable = true}, SHIFT(724), - [1797] = {.count = 1, .reusable = false}, SHIFT(725), - [1799] = {.count = 1, .reusable = true}, SHIFT(725), - [1801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(439), - [1804] = {.count = 1, .reusable = false}, SHIFT(729), - [1806] = {.count = 1, .reusable = false}, SHIFT(732), - [1808] = {.count = 1, .reusable = true}, SHIFT(732), - [1810] = {.count = 1, .reusable = true}, SHIFT(731), - [1812] = {.count = 1, .reusable = true}, SHIFT(733), - [1814] = {.count = 1, .reusable = true}, SHIFT(734), - [1816] = {.count = 1, .reusable = true}, SHIFT(735), - [1818] = {.count = 1, .reusable = false}, SHIFT(736), - [1820] = {.count = 1, .reusable = false}, SHIFT(737), - [1822] = {.count = 1, .reusable = false}, SHIFT(739), - [1824] = {.count = 1, .reusable = false}, SHIFT(744), - [1826] = {.count = 1, .reusable = true}, SHIFT(744), - [1828] = {.count = 1, .reusable = true}, SHIFT(743), - [1830] = {.count = 1, .reusable = true}, SHIFT(745), - [1832] = {.count = 1, .reusable = true}, SHIFT(746), - [1834] = {.count = 1, .reusable = true}, SHIFT(747), - [1836] = {.count = 1, .reusable = true}, SHIFT(748), - [1838] = {.count = 1, .reusable = true}, SHIFT(750), - [1840] = {.count = 1, .reusable = true}, SHIFT(752), - [1842] = {.count = 1, .reusable = true}, SHIFT(753), - [1844] = {.count = 1, .reusable = true}, SHIFT(754), - [1846] = {.count = 1, .reusable = true}, SHIFT(756), - [1848] = {.count = 1, .reusable = true}, SHIFT(758), - [1850] = {.count = 1, .reusable = true}, SHIFT(757), - [1852] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1854] = {.count = 1, .reusable = true}, SHIFT(761), - [1856] = {.count = 1, .reusable = false}, SHIFT(762), - [1858] = {.count = 1, .reusable = false}, SHIFT(765), - [1860] = {.count = 1, .reusable = false}, SHIFT(767), - [1862] = {.count = 1, .reusable = false}, SHIFT(768), - [1864] = {.count = 1, .reusable = false}, SHIFT(769), - [1866] = {.count = 1, .reusable = false}, SHIFT(770), - [1868] = {.count = 1, .reusable = true}, SHIFT(773), - [1870] = {.count = 1, .reusable = true}, SHIFT(775), - [1872] = {.count = 1, .reusable = false}, SHIFT(776), - [1874] = {.count = 1, .reusable = false}, SHIFT(779), - [1876] = {.count = 1, .reusable = true}, SHIFT(780), - [1878] = {.count = 1, .reusable = true}, SHIFT(781), - [1880] = {.count = 1, .reusable = true}, SHIFT(784), - [1882] = {.count = 1, .reusable = true}, SHIFT(785), - [1884] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [1886] = {.count = 1, .reusable = false}, SHIFT(788), - [1888] = {.count = 1, .reusable = true}, SHIFT(789), - [1890] = {.count = 1, .reusable = true}, SHIFT(791), - [1892] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [1894] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [1896] = {.count = 1, .reusable = true}, SHIFT(792), - [1898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(229), - [1901] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(205), - [1904] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(206), - [1907] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1909] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(209), - [1912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(210), - [1915] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(211), - [1918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(212), - [1921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(213), - [1924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(214), - [1927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(229), - [1930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(215), - [1933] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(216), - [1936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(217), - [1939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(218), - [1942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(219), - [1945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(220), - [1948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(221), - [1951] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(222), - [1954] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(223), - [1957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(225), - [1960] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(226), - [1963] = {.count = 1, .reusable = true}, SHIFT(793), - [1965] = {.count = 1, .reusable = true}, SHIFT(796), - [1967] = {.count = 1, .reusable = true}, SHIFT(799), - [1969] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [1971] = {.count = 1, .reusable = false}, SHIFT(803), - [1973] = {.count = 1, .reusable = true}, SHIFT(803), - [1975] = {.count = 1, .reusable = true}, SHIFT(801), - [1977] = {.count = 1, .reusable = true}, SHIFT(802), - [1979] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [1981] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [1983] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [1985] = {.count = 1, .reusable = false}, SHIFT(248), - [1987] = {.count = 1, .reusable = true}, SHIFT(242), - [1989] = {.count = 1, .reusable = true}, SHIFT(248), - [1991] = {.count = 1, .reusable = true}, SHIFT(249), - [1993] = {.count = 1, .reusable = true}, SHIFT(244), - [1995] = {.count = 1, .reusable = false}, SHIFT(245), - [1997] = {.count = 1, .reusable = false}, SHIFT(251), - [1999] = {.count = 1, .reusable = false}, SHIFT(252), - [2001] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), - [2003] = {.count = 1, .reusable = true}, SHIFT(807), - [2005] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2007] = {.count = 1, .reusable = true}, SHIFT(808), - [2009] = {.count = 1, .reusable = false}, SHIFT(810), - [2011] = {.count = 1, .reusable = true}, SHIFT(810), - [2013] = {.count = 1, .reusable = true}, SHIFT(809), - [2015] = {.count = 1, .reusable = true}, SHIFT(813), - [2017] = {.count = 1, .reusable = true}, SHIFT(814), - [2019] = {.count = 1, .reusable = true}, SHIFT(815), - [2021] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [2023] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [2025] = {.count = 1, .reusable = false}, SHIFT(818), - [2027] = {.count = 1, .reusable = true}, SHIFT(818), - [2029] = {.count = 1, .reusable = true}, SHIFT(819), - [2031] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [2033] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [2035] = {.count = 1, .reusable = false}, SHIFT(821), - [2037] = {.count = 1, .reusable = true}, SHIFT(821), - [2039] = {.count = 1, .reusable = true}, SHIFT(822), - [2041] = {.count = 1, .reusable = true}, SHIFT(824), - [2043] = {.count = 1, .reusable = true}, SHIFT(826), - [2045] = {.count = 1, .reusable = true}, SHIFT(827), - [2047] = {.count = 1, .reusable = false}, SHIFT(551), - [2049] = {.count = 1, .reusable = false}, SHIFT(547), - [2051] = {.count = 1, .reusable = false}, SHIFT(544), - [2053] = {.count = 1, .reusable = false}, SHIFT(831), - [2055] = {.count = 1, .reusable = true}, SHIFT(831), - [2057] = {.count = 1, .reusable = false}, SHIFT(832), - [2059] = {.count = 1, .reusable = true}, SHIFT(832), - [2061] = {.count = 1, .reusable = false}, SHIFT(833), - [2063] = {.count = 1, .reusable = true}, SHIFT(833), - [2065] = {.count = 1, .reusable = false}, SHIFT(834), - [2067] = {.count = 1, .reusable = true}, SHIFT(834), - [2069] = {.count = 1, .reusable = false}, SHIFT(835), - [2071] = {.count = 1, .reusable = true}, SHIFT(835), - [2073] = {.count = 1, .reusable = false}, SHIFT(836), - [2075] = {.count = 1, .reusable = true}, SHIFT(836), - [2077] = {.count = 1, .reusable = false}, SHIFT(837), - [2079] = {.count = 1, .reusable = true}, SHIFT(837), - [2081] = {.count = 1, .reusable = false}, SHIFT(838), - [2083] = {.count = 1, .reusable = true}, SHIFT(838), - [2085] = {.count = 1, .reusable = false}, SHIFT(839), - [2087] = {.count = 1, .reusable = true}, SHIFT(839), - [2089] = {.count = 1, .reusable = false}, SHIFT(840), - [2091] = {.count = 1, .reusable = true}, SHIFT(840), - [2093] = {.count = 1, .reusable = true}, SHIFT(841), - [2095] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [2097] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), - [2099] = {.count = 1, .reusable = true}, SHIFT(842), - [2101] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [2103] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [2105] = {.count = 1, .reusable = true}, SHIFT(843), - [2107] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [2109] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [2111] = {.count = 1, .reusable = false}, SHIFT(9), - [2113] = {.count = 1, .reusable = false}, SHIFT(12), - [2115] = {.count = 1, .reusable = false}, SHIFT(844), - [2117] = {.count = 1, .reusable = false}, SHIFT(845), - [2119] = {.count = 1, .reusable = false}, SHIFT(846), - [2121] = {.count = 1, .reusable = false}, SHIFT(847), - [2123] = {.count = 1, .reusable = false}, SHIFT(848), - [2125] = {.count = 1, .reusable = false}, SHIFT(849), - [2127] = {.count = 1, .reusable = false}, SHIFT(850), - [2129] = {.count = 1, .reusable = true}, SHIFT(854), - [2131] = {.count = 1, .reusable = false}, SHIFT(855), - [2133] = {.count = 1, .reusable = false}, SHIFT(858), - [2135] = {.count = 1, .reusable = true}, SHIFT(859), - [2137] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(578), - [2140] = {.count = 1, .reusable = true}, SHIFT(863), - [2142] = {.count = 1, .reusable = false}, SHIFT(865), - [2144] = {.count = 1, .reusable = true}, SHIFT(865), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), - [2148] = {.count = 1, .reusable = false}, SHIFT(581), - [2150] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [2152] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [2154] = {.count = 1, .reusable = true}, SHIFT(868), - [2156] = {.count = 1, .reusable = true}, SHIFT(869), - [2158] = {.count = 1, .reusable = true}, SHIFT(870), - [2160] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [2162] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(300), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(307), - [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5), - [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(305), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(68), - [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(24), - [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(301), - [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(302), - [2191] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2193] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(26), - [2196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(304), - [2199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(16), - [2202] = {.count = 1, .reusable = false}, SHIFT(875), - [2204] = {.count = 1, .reusable = true}, SHIFT(875), - [2206] = {.count = 1, .reusable = true}, SHIFT(874), - [2208] = {.count = 1, .reusable = true}, SHIFT(876), - [2210] = {.count = 1, .reusable = true}, SHIFT(877), - [2212] = {.count = 1, .reusable = true}, SHIFT(878), - [2214] = {.count = 1, .reusable = true}, SHIFT(881), - [2216] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [2218] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [2220] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [2222] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [2224] = {.count = 1, .reusable = true}, SHIFT(882), - [2226] = {.count = 1, .reusable = true}, SHIFT(883), - [2228] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), - [2230] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [2232] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [2234] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [2236] = {.count = 1, .reusable = true}, SHIFT(885), - [2238] = {.count = 1, .reusable = false}, SHIFT(887), - [2240] = {.count = 1, .reusable = true}, SHIFT(887), - [2242] = {.count = 1, .reusable = true}, SHIFT(886), - [2244] = {.count = 1, .reusable = true}, SHIFT(888), - [2246] = {.count = 1, .reusable = true}, SHIFT(889), - [2248] = {.count = 1, .reusable = true}, SHIFT(890), - [2250] = {.count = 1, .reusable = false}, SHIFT(893), - [2252] = {.count = 1, .reusable = false}, SHIFT(894), - [2254] = {.count = 1, .reusable = true}, SHIFT(894), - [2256] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [2258] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [2260] = {.count = 1, .reusable = true}, SHIFT(895), - [2262] = {.count = 1, .reusable = true}, SHIFT(897), - [2264] = {.count = 1, .reusable = false}, SHIFT(898), - [2266] = {.count = 1, .reusable = true}, SHIFT(898), - [2268] = {.count = 1, .reusable = true}, SHIFT(901), - [2270] = {.count = 1, .reusable = false}, SHIFT(902), - [2272] = {.count = 1, .reusable = true}, SHIFT(902), - [2274] = {.count = 1, .reusable = false}, SHIFT(916), - [2276] = {.count = 1, .reusable = true}, SHIFT(916), - [2278] = {.count = 1, .reusable = false}, SHIFT(917), - [2280] = {.count = 1, .reusable = true}, SHIFT(917), - [2282] = {.count = 1, .reusable = false}, SHIFT(918), - [2284] = {.count = 1, .reusable = true}, SHIFT(918), - [2286] = {.count = 1, .reusable = false}, SHIFT(919), - [2288] = {.count = 1, .reusable = true}, SHIFT(919), - [2290] = {.count = 1, .reusable = false}, SHIFT(920), - [2292] = {.count = 1, .reusable = true}, SHIFT(920), - [2294] = {.count = 1, .reusable = false}, SHIFT(921), - [2296] = {.count = 1, .reusable = true}, SHIFT(921), - [2298] = {.count = 1, .reusable = false}, SHIFT(922), - [2300] = {.count = 1, .reusable = true}, SHIFT(922), - [2302] = {.count = 1, .reusable = false}, SHIFT(923), - [2304] = {.count = 1, .reusable = true}, SHIFT(923), - [2306] = {.count = 1, .reusable = false}, SHIFT(924), - [2308] = {.count = 1, .reusable = true}, SHIFT(924), - [2310] = {.count = 1, .reusable = false}, SHIFT(925), - [2312] = {.count = 1, .reusable = true}, SHIFT(925), - [2314] = {.count = 1, .reusable = false}, SHIFT(926), - [2316] = {.count = 1, .reusable = true}, SHIFT(926), - [2318] = {.count = 1, .reusable = true}, SHIFT(927), - [2320] = {.count = 1, .reusable = false}, SHIFT(928), - [2322] = {.count = 1, .reusable = true}, SHIFT(928), - [2324] = {.count = 1, .reusable = true}, SHIFT(931), - [2326] = {.count = 1, .reusable = false}, SHIFT(932), - [2328] = {.count = 1, .reusable = true}, SHIFT(932), - [2330] = {.count = 1, .reusable = false}, SHIFT(946), - [2332] = {.count = 1, .reusable = true}, SHIFT(946), - [2334] = {.count = 1, .reusable = false}, SHIFT(947), - [2336] = {.count = 1, .reusable = true}, SHIFT(947), - [2338] = {.count = 1, .reusable = false}, SHIFT(948), - [2340] = {.count = 1, .reusable = true}, SHIFT(948), - [2342] = {.count = 1, .reusable = false}, SHIFT(949), - [2344] = {.count = 1, .reusable = true}, SHIFT(949), - [2346] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [2348] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [2350] = {.count = 1, .reusable = false}, SHIFT(950), - [2352] = {.count = 1, .reusable = true}, SHIFT(950), - [2354] = {.count = 1, .reusable = false}, SHIFT(951), - [2356] = {.count = 1, .reusable = true}, SHIFT(951), - [2358] = {.count = 1, .reusable = false}, SHIFT(952), - [2360] = {.count = 1, .reusable = true}, SHIFT(952), - [2362] = {.count = 1, .reusable = false}, SHIFT(953), - [2364] = {.count = 1, .reusable = true}, SHIFT(953), - [2366] = {.count = 1, .reusable = false}, SHIFT(954), - [2368] = {.count = 1, .reusable = true}, SHIFT(954), - [2370] = {.count = 1, .reusable = false}, SHIFT(955), - [2372] = {.count = 1, .reusable = true}, SHIFT(955), - [2374] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [2376] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [2378] = {.count = 1, .reusable = true}, SHIFT(956), - [2380] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [2382] = {.count = 1, .reusable = false}, SHIFT(958), - [2384] = {.count = 1, .reusable = true}, SHIFT(958), - [2386] = {.count = 1, .reusable = true}, SHIFT(957), - [2388] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [2390] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [2392] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [2394] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [2396] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(375), - [2399] = {.count = 1, .reusable = false}, SHIFT(392), - [2401] = {.count = 1, .reusable = true}, SHIFT(386), - [2403] = {.count = 1, .reusable = true}, SHIFT(392), - [2405] = {.count = 1, .reusable = true}, SHIFT(393), - [2407] = {.count = 1, .reusable = true}, SHIFT(388), - [2409] = {.count = 1, .reusable = false}, SHIFT(389), - [2411] = {.count = 1, .reusable = false}, SHIFT(395), - [2413] = {.count = 1, .reusable = false}, SHIFT(396), - [2415] = {.count = 1, .reusable = true}, SHIFT(959), - [2417] = {.count = 1, .reusable = true}, SHIFT(960), - [2419] = {.count = 1, .reusable = false}, SHIFT(49), - [2421] = {.count = 1, .reusable = false}, SHIFT(50), - [2423] = {.count = 1, .reusable = false}, SHIFT(961), - [2425] = {.count = 1, .reusable = true}, SHIFT(961), - [2427] = {.count = 1, .reusable = true}, SHIFT(963), - [2429] = {.count = 1, .reusable = false}, SHIFT(963), - [2431] = {.count = 1, .reusable = true}, SHIFT(964), - [2433] = {.count = 1, .reusable = true}, SHIFT(965), - [2435] = {.count = 1, .reusable = false}, SHIFT(966), - [2437] = {.count = 1, .reusable = true}, SHIFT(966), - [2439] = {.count = 1, .reusable = false}, SHIFT(967), - [2441] = {.count = 1, .reusable = true}, SHIFT(967), - [2443] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2445] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2447] = {.count = 1, .reusable = true}, SHIFT(968), - [2449] = {.count = 1, .reusable = true}, SHIFT(969), - [2451] = {.count = 1, .reusable = false}, SHIFT(968), - [2453] = {.count = 1, .reusable = false}, SHIFT(970), - [2455] = {.count = 1, .reusable = true}, SHIFT(971), - [2457] = {.count = 1, .reusable = true}, SHIFT(972), - [2459] = {.count = 1, .reusable = true}, SHIFT(974), - [2461] = {.count = 1, .reusable = true}, SHIFT(976), - [2463] = {.count = 1, .reusable = true}, SHIFT(977), - [2465] = {.count = 1, .reusable = true}, SHIFT(978), - [2467] = {.count = 1, .reusable = true}, SHIFT(979), - [2469] = {.count = 1, .reusable = false}, SHIFT(980), - [2471] = {.count = 1, .reusable = false}, SHIFT(981), - [2473] = {.count = 1, .reusable = true}, SHIFT(982), - [2475] = {.count = 1, .reusable = false}, SHIFT(983), - [2477] = {.count = 1, .reusable = true}, SHIFT(983), - [2479] = {.count = 1, .reusable = true}, SHIFT(984), - [2481] = {.count = 1, .reusable = true}, SHIFT(985), - [2483] = {.count = 1, .reusable = false}, SHIFT(986), - [2485] = {.count = 1, .reusable = true}, SHIFT(987), - [2487] = {.count = 1, .reusable = false}, SHIFT(985), - [2489] = {.count = 1, .reusable = true}, SHIFT(989), - [2491] = {.count = 1, .reusable = true}, SHIFT(699), - [2493] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), - [2495] = {.count = 1, .reusable = true}, SHIFT(991), - [2497] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [2499] = {.count = 1, .reusable = true}, SHIFT(992), - [2501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(710), - [2504] = {.count = 1, .reusable = false}, SHIFT(996), - [2506] = {.count = 1, .reusable = true}, SHIFT(997), - [2508] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [2510] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2512] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2514] = {.count = 1, .reusable = true}, SHIFT(999), - [2516] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [2518] = {.count = 1, .reusable = false}, SHIFT(1001), - [2520] = {.count = 1, .reusable = true}, SHIFT(1001), - [2522] = {.count = 1, .reusable = true}, SHIFT(1000), - [2524] = {.count = 1, .reusable = true}, SHIFT(1003), - [2526] = {.count = 1, .reusable = false}, SHIFT(1005), - [2528] = {.count = 1, .reusable = true}, SHIFT(1005), - [2530] = {.count = 1, .reusable = true}, SHIFT(1006), - [2532] = {.count = 1, .reusable = false}, SHIFT(1008), - [2534] = {.count = 1, .reusable = true}, SHIFT(1008), - [2536] = {.count = 1, .reusable = true}, SHIFT(1007), - [2538] = {.count = 1, .reusable = true}, SHIFT(1009), - [2540] = {.count = 1, .reusable = false}, SHIFT(1010), - [2542] = {.count = 1, .reusable = false}, SHIFT(1013), - [2544] = {.count = 1, .reusable = true}, SHIFT(1013), - [2546] = {.count = 1, .reusable = true}, SHIFT(1012), - [2548] = {.count = 1, .reusable = true}, SHIFT(1014), - [2550] = {.count = 1, .reusable = false}, SHIFT(1015), - [2552] = {.count = 1, .reusable = false}, SHIFT(1018), - [2554] = {.count = 1, .reusable = false}, SHIFT(1020), - [2556] = {.count = 1, .reusable = false}, SHIFT(1021), - [2558] = {.count = 1, .reusable = false}, SHIFT(1022), - [2560] = {.count = 1, .reusable = false}, SHIFT(1023), - [2562] = {.count = 1, .reusable = true}, SHIFT(1026), - [2564] = {.count = 1, .reusable = true}, SHIFT(1028), - [2566] = {.count = 1, .reusable = false}, SHIFT(1029), - [2568] = {.count = 1, .reusable = false}, SHIFT(1032), - [2570] = {.count = 1, .reusable = true}, SHIFT(1033), - [2572] = {.count = 1, .reusable = true}, SHIFT(1034), - [2574] = {.count = 1, .reusable = true}, SHIFT(1037), - [2576] = {.count = 1, .reusable = true}, SHIFT(1038), - [2578] = {.count = 1, .reusable = false}, SHIFT(1039), - [2580] = {.count = 1, .reusable = true}, SHIFT(1040), - [2582] = {.count = 1, .reusable = true}, SHIFT(1042), - [2584] = {.count = 1, .reusable = true}, SHIFT(1043), - [2586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(461), - [2589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(442), - [2592] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(443), - [2595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(444), - [2598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(445), - [2601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(446), - [2604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), - [2607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), - [2610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), - [2613] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(461), - [2616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), - [2619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), - [2622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(452), - [2625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), - [2628] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(454), - [2631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), - [2634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(456), - [2637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), - [2640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(458), - [2643] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(459), - [2646] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), - [2649] = {.count = 1, .reusable = true}, SHIFT(1046), - [2651] = {.count = 1, .reusable = false}, SHIFT(1046), - [2653] = {.count = 1, .reusable = true}, SHIFT(1049), - [2655] = {.count = 1, .reusable = true}, SHIFT(1051), - [2657] = {.count = 1, .reusable = true}, SHIFT(1052), - [2659] = {.count = 1, .reusable = false}, SHIFT(1055), - [2661] = {.count = 1, .reusable = true}, SHIFT(1056), - [2663] = {.count = 1, .reusable = true}, SHIFT(1058), - [2665] = {.count = 1, .reusable = false}, SHIFT(1058), - [2667] = {.count = 1, .reusable = false}, SHIFT(1060), - [2669] = {.count = 1, .reusable = true}, SHIFT(1061), - [2671] = {.count = 1, .reusable = true}, SHIFT(1063), - [2673] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [2675] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [2677] = {.count = 1, .reusable = true}, SHIFT(1066), - [2679] = {.count = 1, .reusable = true}, SHIFT(1067), - [2681] = {.count = 1, .reusable = false}, SHIFT(1068), - [2683] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [2685] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [2687] = {.count = 1, .reusable = true}, SHIFT(1069), - [2689] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [2691] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [2693] = {.count = 1, .reusable = true}, SHIFT(1070), - [2695] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [2697] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [2699] = {.count = 1, .reusable = true}, SHIFT(1071), - [2701] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [2703] = {.count = 1, .reusable = false}, SHIFT(1073), - [2705] = {.count = 1, .reusable = true}, SHIFT(1073), - [2707] = {.count = 1, .reusable = true}, SHIFT(1072), - [2709] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), - [2711] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(500), - [2714] = {.count = 1, .reusable = false}, SHIFT(76), - [2716] = {.count = 1, .reusable = false}, SHIFT(1074), - [2718] = {.count = 1, .reusable = true}, SHIFT(1074), - [2720] = {.count = 1, .reusable = false}, SHIFT(1076), - [2722] = {.count = 1, .reusable = true}, SHIFT(1076), - [2724] = {.count = 1, .reusable = true}, SHIFT(1075), - [2726] = {.count = 1, .reusable = true}, SHIFT(1077), - [2728] = {.count = 1, .reusable = false}, SHIFT(1078), - [2730] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [2732] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [2734] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [2736] = {.count = 1, .reusable = false}, SHIFT(1079), - [2738] = {.count = 1, .reusable = false}, SHIFT(1080), - [2740] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [2742] = {.count = 1, .reusable = false}, SHIFT(1081), - [2744] = {.count = 1, .reusable = false}, SHIFT(1082), - [2746] = {.count = 1, .reusable = false}, SHIFT(1085), - [2748] = {.count = 1, .reusable = true}, SHIFT(1085), - [2750] = {.count = 1, .reusable = true}, SHIFT(1084), - [2752] = {.count = 1, .reusable = false}, SHIFT(1086), - [2754] = {.count = 1, .reusable = false}, SHIFT(1087), - [2756] = {.count = 1, .reusable = false}, SHIFT(1088), - [2758] = {.count = 1, .reusable = false}, SHIFT(1089), - [2760] = {.count = 1, .reusable = true}, SHIFT(1091), - [2762] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [2764] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [2766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3), - [2769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), - [2772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(524), - [2775] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(525), - [2778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(40), - [2781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(526), - [2784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(17), - [2787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(9), - [2790] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(40), - [2793] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), - [2798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(12), - [2801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(528), - [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), - [2807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(529), - [2810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(18), - [2813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(19), - [2816] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(25), - [2819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(27), - [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(23), - [2825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(530), - [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(28), - [2831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), - [2834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), - [2837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(31), - [2840] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), - [2843] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [2845] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [2847] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [2849] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2851] = {.count = 1, .reusable = true}, SHIFT(1092), - [2853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1093), - [2856] = {.count = 1, .reusable = false}, SHIFT(93), - [2858] = {.count = 1, .reusable = false}, SHIFT(94), - [2860] = {.count = 1, .reusable = false}, SHIFT(549), - [2862] = {.count = 1, .reusable = true}, SHIFT(543), - [2864] = {.count = 1, .reusable = true}, SHIFT(549), - [2866] = {.count = 1, .reusable = true}, SHIFT(550), - [2868] = {.count = 1, .reusable = true}, SHIFT(545), - [2870] = {.count = 1, .reusable = false}, SHIFT(546), - [2872] = {.count = 1, .reusable = false}, SHIFT(552), - [2874] = {.count = 1, .reusable = false}, SHIFT(553), - [2876] = {.count = 1, .reusable = true}, SHIFT(1094), - [2878] = {.count = 1, .reusable = true}, SHIFT(1095), - [2880] = {.count = 1, .reusable = false}, SHIFT(1096), - [2882] = {.count = 1, .reusable = true}, SHIFT(1096), - [2884] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [2886] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [2888] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [2890] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [2892] = {.count = 1, .reusable = true}, SHIFT(1097), - [2894] = {.count = 1, .reusable = false}, SHIFT(1098), - [2896] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2898] = {.count = 1, .reusable = false}, SHIFT(1099), - [2900] = {.count = 1, .reusable = false}, SHIFT(1100), - [2902] = {.count = 1, .reusable = false}, SHIFT(1101), - [2904] = {.count = 1, .reusable = true}, SHIFT(1104), - [2906] = {.count = 1, .reusable = false}, SHIFT(1105), - [2908] = {.count = 1, .reusable = false}, SHIFT(1106), - [2910] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2912] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2914] = {.count = 1, .reusable = false}, SHIFT(1107), - [2916] = {.count = 1, .reusable = true}, SHIFT(1108), - [2918] = {.count = 1, .reusable = true}, SHIFT(1109), - [2920] = {.count = 1, .reusable = true}, SHIFT(1110), - [2922] = {.count = 1, .reusable = false}, SHIFT(1109), - [2924] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2926] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2928] = {.count = 1, .reusable = true}, SHIFT(1115), - [2930] = {.count = 1, .reusable = false}, SHIFT(1115), - [2932] = {.count = 1, .reusable = true}, SHIFT(1117), - [2934] = {.count = 1, .reusable = true}, SHIFT(1118), - [2936] = {.count = 1, .reusable = false}, SHIFT(1119), - [2938] = {.count = 1, .reusable = true}, SHIFT(1121), - [2940] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [2942] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [2944] = {.count = 1, .reusable = false}, SHIFT(1125), - [2946] = {.count = 1, .reusable = true}, SHIFT(1125), - [2948] = {.count = 1, .reusable = true}, SHIFT(1123), - [2950] = {.count = 1, .reusable = true}, SHIFT(1124), - [2952] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [2954] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [2956] = {.count = 1, .reusable = true}, SHIFT(1128), - [2958] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [2960] = {.count = 1, .reusable = false}, SHIFT(1132), - [2962] = {.count = 1, .reusable = true}, SHIFT(1132), - [2964] = {.count = 1, .reusable = true}, SHIFT(1131), - [2966] = {.count = 1, .reusable = true}, SHIFT(1133), - [2968] = {.count = 1, .reusable = false}, SHIFT(1134), - [2970] = {.count = 1, .reusable = true}, SHIFT(1134), - [2972] = {.count = 1, .reusable = false}, SHIFT(1136), - [2974] = {.count = 1, .reusable = true}, SHIFT(1136), - [2976] = {.count = 1, .reusable = true}, SHIFT(1135), - [2978] = {.count = 1, .reusable = true}, SHIFT(1138), - [2980] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), - [2982] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [2984] = {.count = 1, .reusable = true}, SHIFT(1139), - [2986] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [2988] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [2990] = {.count = 1, .reusable = false}, SHIFT(1142), - [2992] = {.count = 1, .reusable = true}, SHIFT(1142), - [2994] = {.count = 1, .reusable = true}, SHIFT(1141), - [2996] = {.count = 1, .reusable = true}, SHIFT(1143), - [2998] = {.count = 1, .reusable = false}, SHIFT(1144), - [3000] = {.count = 1, .reusable = true}, SHIFT(1144), - [3002] = {.count = 1, .reusable = false}, SHIFT(1146), - [3004] = {.count = 1, .reusable = true}, SHIFT(1146), - [3006] = {.count = 1, .reusable = true}, SHIFT(1145), - [3008] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3010] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [3012] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [3014] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(610), - [3017] = {.count = 1, .reusable = true}, SHIFT(1148), - [3019] = {.count = 1, .reusable = true}, SHIFT(1149), - [3021] = {.count = 1, .reusable = false}, SHIFT(912), - [3023] = {.count = 1, .reusable = false}, SHIFT(908), - [3025] = {.count = 1, .reusable = false}, SHIFT(905), - [3027] = {.count = 1, .reusable = false}, SHIFT(1153), - [3029] = {.count = 1, .reusable = true}, SHIFT(1153), - [3031] = {.count = 1, .reusable = false}, SHIFT(1154), - [3033] = {.count = 1, .reusable = true}, SHIFT(1154), - [3035] = {.count = 1, .reusable = false}, SHIFT(1155), - [3037] = {.count = 1, .reusable = true}, SHIFT(1155), - [3039] = {.count = 1, .reusable = false}, SHIFT(1156), - [3041] = {.count = 1, .reusable = true}, SHIFT(1156), - [3043] = {.count = 1, .reusable = false}, SHIFT(1157), - [3045] = {.count = 1, .reusable = true}, SHIFT(1157), - [3047] = {.count = 1, .reusable = false}, SHIFT(1158), - [3049] = {.count = 1, .reusable = true}, SHIFT(1158), - [3051] = {.count = 1, .reusable = false}, SHIFT(1159), - [3053] = {.count = 1, .reusable = true}, SHIFT(1159), - [3055] = {.count = 1, .reusable = false}, SHIFT(1160), - [3057] = {.count = 1, .reusable = true}, SHIFT(1160), - [3059] = {.count = 1, .reusable = false}, SHIFT(1161), - [3061] = {.count = 1, .reusable = true}, SHIFT(1161), - [3063] = {.count = 1, .reusable = false}, SHIFT(1162), - [3065] = {.count = 1, .reusable = true}, SHIFT(1162), - [3067] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [3069] = {.count = 1, .reusable = true}, SHIFT(1163), - [3071] = {.count = 1, .reusable = true}, SHIFT(1164), - [3073] = {.count = 1, .reusable = true}, SHIFT(1165), - [3075] = {.count = 1, .reusable = false}, SHIFT(942), - [3077] = {.count = 1, .reusable = false}, SHIFT(938), - [3079] = {.count = 1, .reusable = false}, SHIFT(935), - [3081] = {.count = 1, .reusable = false}, SHIFT(1169), - [3083] = {.count = 1, .reusable = true}, SHIFT(1169), - [3085] = {.count = 1, .reusable = false}, SHIFT(1170), - [3087] = {.count = 1, .reusable = true}, SHIFT(1170), - [3089] = {.count = 1, .reusable = false}, SHIFT(1171), - [3091] = {.count = 1, .reusable = true}, SHIFT(1171), - [3093] = {.count = 1, .reusable = false}, SHIFT(1172), - [3095] = {.count = 1, .reusable = true}, SHIFT(1172), - [3097] = {.count = 1, .reusable = false}, SHIFT(1173), - [3099] = {.count = 1, .reusable = true}, SHIFT(1173), - [3101] = {.count = 1, .reusable = false}, SHIFT(1174), - [3103] = {.count = 1, .reusable = true}, SHIFT(1174), - [3105] = {.count = 1, .reusable = false}, SHIFT(1175), - [3107] = {.count = 1, .reusable = true}, SHIFT(1175), - [3109] = {.count = 1, .reusable = false}, SHIFT(1176), - [3111] = {.count = 1, .reusable = true}, SHIFT(1176), - [3113] = {.count = 1, .reusable = false}, SHIFT(1177), - [3115] = {.count = 1, .reusable = true}, SHIFT(1177), - [3117] = {.count = 1, .reusable = false}, SHIFT(1178), - [3119] = {.count = 1, .reusable = true}, SHIFT(1178), - [3121] = {.count = 1, .reusable = true}, SHIFT(1179), - [3123] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [3125] = {.count = 1, .reusable = true}, SHIFT(1180), - [3127] = {.count = 1, .reusable = false}, SHIFT(165), - [3129] = {.count = 1, .reusable = false}, SHIFT(1181), - [3131] = {.count = 1, .reusable = true}, SHIFT(1181), - [3133] = {.count = 1, .reusable = true}, SHIFT(1182), - [3135] = {.count = 1, .reusable = false}, SHIFT(1183), - [3137] = {.count = 1, .reusable = true}, SHIFT(1183), - [3139] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [3141] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [3143] = {.count = 1, .reusable = true}, SHIFT(1185), - [3145] = {.count = 1, .reusable = true}, SHIFT(1187), - [3147] = {.count = 1, .reusable = false}, SHIFT(1188), - [3149] = {.count = 1, .reusable = true}, SHIFT(1188), - [3151] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), - [3153] = {.count = 1, .reusable = false}, SHIFT(1202), - [3155] = {.count = 1, .reusable = true}, SHIFT(1202), - [3157] = {.count = 1, .reusable = false}, SHIFT(1203), - [3159] = {.count = 1, .reusable = true}, SHIFT(1203), - [3161] = {.count = 1, .reusable = false}, SHIFT(1204), - [3163] = {.count = 1, .reusable = true}, SHIFT(1204), - [3165] = {.count = 1, .reusable = false}, SHIFT(1206), - [3167] = {.count = 1, .reusable = true}, SHIFT(1206), - [3169] = {.count = 1, .reusable = true}, SHIFT(1205), - [3171] = {.count = 1, .reusable = false}, SHIFT(1208), - [3173] = {.count = 1, .reusable = true}, SHIFT(1208), - [3175] = {.count = 1, .reusable = false}, SHIFT(1209), - [3177] = {.count = 1, .reusable = true}, SHIFT(1209), - [3179] = {.count = 1, .reusable = false}, SHIFT(1210), - [3181] = {.count = 1, .reusable = true}, SHIFT(1210), - [3183] = {.count = 1, .reusable = false}, SHIFT(1211), - [3185] = {.count = 1, .reusable = true}, SHIFT(1211), - [3187] = {.count = 1, .reusable = false}, SHIFT(1212), - [3189] = {.count = 1, .reusable = true}, SHIFT(1212), - [3191] = {.count = 1, .reusable = false}, SHIFT(1213), + [1658] = {.count = 1, .reusable = true}, SHIFT(674), + [1660] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1662] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1664] = {.count = 1, .reusable = true}, SHIFT(677), + [1666] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1668] = {.count = 1, .reusable = true}, SHIFT(34), + [1670] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1672] = {.count = 1, .reusable = false}, SHIFT(681), + [1674] = {.count = 1, .reusable = true}, SHIFT(681), + [1676] = {.count = 1, .reusable = true}, SHIFT(680), + [1678] = {.count = 1, .reusable = true}, SHIFT(682), + [1680] = {.count = 1, .reusable = true}, SHIFT(684), + [1682] = {.count = 1, .reusable = true}, SHIFT(686), + [1684] = {.count = 1, .reusable = false}, SHIFT(687), + [1686] = {.count = 1, .reusable = false}, SHIFT(688), + [1688] = {.count = 1, .reusable = false}, SHIFT(689), + [1690] = {.count = 1, .reusable = false}, SHIFT(690), + [1692] = {.count = 1, .reusable = false}, SHIFT(691), + [1694] = {.count = 1, .reusable = false}, SHIFT(692), + [1696] = {.count = 1, .reusable = false}, SHIFT(693), + [1698] = {.count = 1, .reusable = false}, SHIFT(694), + [1700] = {.count = 1, .reusable = true}, SHIFT(698), + [1702] = {.count = 1, .reusable = false}, SHIFT(699), + [1704] = {.count = 1, .reusable = false}, SHIFT(702), + [1706] = {.count = 1, .reusable = true}, SHIFT(703), + [1708] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1710] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(167), + [1715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), + [1718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(174), + [1721] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5), + [1724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(21), + [1727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(24), + [1730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(168), + [1733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(169), + [1736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(26), + [1739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(91), + [1742] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(171), + [1747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(172), + [1750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(34), + [1753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(399), + [1756] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), + [1758] = {.count = 1, .reusable = false}, SHIFT(401), + [1760] = {.count = 1, .reusable = true}, SHIFT(709), + [1762] = {.count = 1, .reusable = false}, SHIFT(711), + [1764] = {.count = 1, .reusable = true}, SHIFT(711), + [1766] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [1768] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [1770] = {.count = 1, .reusable = true}, SHIFT(712), + [1772] = {.count = 1, .reusable = true}, SHIFT(714), + [1774] = {.count = 1, .reusable = true}, SHIFT(713), + [1776] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [1778] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [1780] = {.count = 1, .reusable = false}, SHIFT(11), + [1782] = {.count = 1, .reusable = false}, SHIFT(20), + [1784] = {.count = 1, .reusable = true}, SHIFT(719), + [1786] = {.count = 1, .reusable = true}, SHIFT(721), + [1788] = {.count = 1, .reusable = true}, SHIFT(722), + [1790] = {.count = 1, .reusable = false}, SHIFT(724), + [1792] = {.count = 1, .reusable = true}, SHIFT(724), + [1794] = {.count = 1, .reusable = true}, SHIFT(723), + [1796] = {.count = 1, .reusable = true}, SHIFT(725), + [1798] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [1800] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [1802] = {.count = 1, .reusable = false}, SHIFT(195), + [1804] = {.count = 1, .reusable = true}, SHIFT(195), + [1806] = {.count = 1, .reusable = false}, SHIFT(198), + [1808] = {.count = 1, .reusable = false}, SHIFT(199), + [1810] = {.count = 1, .reusable = true}, SHIFT(200), + [1812] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), + [1814] = {.count = 1, .reusable = true}, SHIFT(194), + [1816] = {.count = 1, .reusable = true}, SHIFT(196), + [1818] = {.count = 1, .reusable = false}, SHIFT(202), + [1820] = {.count = 1, .reusable = true}, SHIFT(726), + [1822] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [1824] = {.count = 1, .reusable = true}, SHIFT(727), + [1826] = {.count = 1, .reusable = true}, SHIFT(728), + [1828] = {.count = 1, .reusable = true}, SHIFT(729), + [1830] = {.count = 1, .reusable = true}, SHIFT(730), + [1832] = {.count = 1, .reusable = true}, SHIFT(731), + [1834] = {.count = 1, .reusable = true}, SHIFT(734), + [1836] = {.count = 1, .reusable = true}, SHIFT(735), + [1838] = {.count = 1, .reusable = false}, SHIFT(736), + [1840] = {.count = 1, .reusable = false}, SHIFT(737), + [1842] = {.count = 1, .reusable = false}, SHIFT(739), + [1844] = {.count = 1, .reusable = true}, SHIFT(740), + [1846] = {.count = 1, .reusable = true}, SHIFT(741), + [1848] = {.count = 1, .reusable = true}, SHIFT(742), + [1850] = {.count = 1, .reusable = true}, SHIFT(743), + [1852] = {.count = 1, .reusable = true}, SHIFT(744), + [1854] = {.count = 1, .reusable = true}, SHIFT(748), + [1856] = {.count = 1, .reusable = false}, SHIFT(750), + [1858] = {.count = 1, .reusable = true}, SHIFT(750), + [1860] = {.count = 1, .reusable = true}, SHIFT(749), + [1862] = {.count = 1, .reusable = true}, SHIFT(752), + [1864] = {.count = 1, .reusable = true}, SHIFT(753), + [1866] = {.count = 1, .reusable = true}, SHIFT(754), + [1868] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1870] = {.count = 1, .reusable = true}, SHIFT(757), + [1872] = {.count = 1, .reusable = true}, SHIFT(756), + [1874] = {.count = 1, .reusable = true}, SHIFT(759), + [1876] = {.count = 1, .reusable = false}, SHIFT(760), + [1878] = {.count = 1, .reusable = false}, SHIFT(763), + [1880] = {.count = 1, .reusable = false}, SHIFT(766), + [1882] = {.count = 1, .reusable = true}, SHIFT(766), + [1884] = {.count = 1, .reusable = true}, SHIFT(765), + [1886] = {.count = 1, .reusable = false}, SHIFT(767), + [1888] = {.count = 1, .reusable = true}, SHIFT(771), + [1890] = {.count = 1, .reusable = false}, SHIFT(770), + [1892] = {.count = 1, .reusable = true}, SHIFT(772), + [1894] = {.count = 1, .reusable = false}, SHIFT(778), + [1896] = {.count = 1, .reusable = false}, SHIFT(775), + [1898] = {.count = 1, .reusable = false}, SHIFT(776), + [1900] = {.count = 1, .reusable = false}, SHIFT(777), + [1902] = {.count = 1, .reusable = true}, SHIFT(780), + [1904] = {.count = 1, .reusable = false}, SHIFT(782), + [1906] = {.count = 1, .reusable = true}, SHIFT(784), + [1908] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [1910] = {.count = 1, .reusable = false}, SHIFT(788), + [1912] = {.count = 1, .reusable = true}, SHIFT(789), + [1914] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [1918] = {.count = 1, .reusable = true}, SHIFT(791), + [1920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(229), + [1923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(206), + [1926] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [1928] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(211), + [1931] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(214), + [1934] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(229), + [1937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(216), + [1940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(221), + [1943] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(204), + [1946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(205), + [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(208), + [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(209), + [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(212), + [1958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(213), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(215), + [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(217), + [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(218), + [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(219), + [1973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(220), + [1976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(222), + [1979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(223), + [1982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(225), + [1985] = {.count = 1, .reusable = true}, SHIFT(792), + [1987] = {.count = 1, .reusable = true}, SHIFT(796), + [1989] = {.count = 1, .reusable = false}, SHIFT(490), + [1991] = {.count = 1, .reusable = false}, SHIFT(498), + [1993] = {.count = 1, .reusable = false}, SHIFT(494), + [1995] = {.count = 1, .reusable = false}, SHIFT(799), + [1997] = {.count = 1, .reusable = true}, SHIFT(799), + [1999] = {.count = 1, .reusable = false}, SHIFT(800), + [2001] = {.count = 1, .reusable = true}, SHIFT(800), + [2003] = {.count = 1, .reusable = false}, SHIFT(801), + [2005] = {.count = 1, .reusable = true}, SHIFT(801), + [2007] = {.count = 1, .reusable = false}, SHIFT(802), + [2009] = {.count = 1, .reusable = true}, SHIFT(802), + [2011] = {.count = 1, .reusable = false}, SHIFT(803), + [2013] = {.count = 1, .reusable = true}, SHIFT(803), + [2015] = {.count = 1, .reusable = false}, SHIFT(804), + [2017] = {.count = 1, .reusable = true}, SHIFT(804), + [2019] = {.count = 1, .reusable = false}, SHIFT(805), + [2021] = {.count = 1, .reusable = true}, SHIFT(805), + [2023] = {.count = 1, .reusable = false}, SHIFT(806), + [2025] = {.count = 1, .reusable = true}, SHIFT(806), + [2027] = {.count = 1, .reusable = false}, SHIFT(807), + [2029] = {.count = 1, .reusable = true}, SHIFT(807), + [2031] = {.count = 1, .reusable = false}, SHIFT(808), + [2033] = {.count = 1, .reusable = true}, SHIFT(808), + [2035] = {.count = 1, .reusable = true}, SHIFT(809), + [2037] = {.count = 1, .reusable = true}, SHIFT(810), + [2039] = {.count = 1, .reusable = false}, SHIFT(821), + [2041] = {.count = 1, .reusable = false}, SHIFT(825), + [2043] = {.count = 1, .reusable = true}, SHIFT(813), + [2045] = {.count = 1, .reusable = true}, SHIFT(812), + [2047] = {.count = 1, .reusable = true}, SHIFT(825), + [2049] = {.count = 1, .reusable = false}, SHIFT(814), + [2051] = {.count = 1, .reusable = true}, SHIFT(815), + [2053] = {.count = 1, .reusable = true}, SHIFT(814), + [2055] = {.count = 1, .reusable = true}, SHIFT(816), + [2057] = {.count = 1, .reusable = false}, SHIFT(817), + [2059] = {.count = 1, .reusable = true}, SHIFT(818), + [2061] = {.count = 1, .reusable = true}, SHIFT(819), + [2063] = {.count = 1, .reusable = false}, SHIFT(820), + [2065] = {.count = 1, .reusable = true}, SHIFT(811), + [2067] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [2069] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [2071] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [2073] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [2075] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [2077] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2079] = {.count = 1, .reusable = true}, SHIFT(828), + [2081] = {.count = 1, .reusable = true}, SHIFT(829), + [2083] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [2085] = {.count = 1, .reusable = false}, SHIFT(832), + [2087] = {.count = 1, .reusable = true}, SHIFT(833), + [2089] = {.count = 1, .reusable = false}, SHIFT(834), + [2091] = {.count = 1, .reusable = true}, SHIFT(838), + [2093] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [2095] = {.count = 1, .reusable = true}, SHIFT(835), + [2097] = {.count = 1, .reusable = true}, SHIFT(836), + [2099] = {.count = 1, .reusable = true}, SHIFT(839), + [2101] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [2103] = {.count = 1, .reusable = false}, SHIFT(842), + [2105] = {.count = 1, .reusable = true}, SHIFT(842), + [2107] = {.count = 1, .reusable = true}, SHIFT(840), + [2109] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [2111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), + [2114] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2116] = {.count = 1, .reusable = true}, SHIFT(844), + [2118] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [2120] = {.count = 1, .reusable = true}, SHIFT(848), + [2122] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [2124] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [2126] = {.count = 1, .reusable = false}, SHIFT(853), + [2128] = {.count = 1, .reusable = true}, SHIFT(853), + [2130] = {.count = 1, .reusable = true}, SHIFT(850), + [2132] = {.count = 1, .reusable = true}, SHIFT(851), + [2134] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [2136] = {.count = 1, .reusable = false}, SHIFT(856), + [2138] = {.count = 1, .reusable = true}, SHIFT(856), + [2140] = {.count = 1, .reusable = true}, SHIFT(855), + [2142] = {.count = 1, .reusable = true}, SHIFT(857), + [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(549), + [2147] = {.count = 1, .reusable = false}, SHIFT(858), + [2149] = {.count = 1, .reusable = true}, SHIFT(858), + [2151] = {.count = 1, .reusable = false}, SHIFT(859), + [2153] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), + [2155] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), + [2157] = {.count = 1, .reusable = true}, SHIFT(864), + [2159] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [2161] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [2163] = {.count = 1, .reusable = true}, SHIFT(865), + [2165] = {.count = 1, .reusable = false}, SHIFT(868), + [2167] = {.count = 1, .reusable = true}, SHIFT(868), + [2169] = {.count = 1, .reusable = true}, SHIFT(867), + [2171] = {.count = 1, .reusable = false}, SHIFT(870), + [2173] = {.count = 1, .reusable = true}, SHIFT(870), + [2175] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [2177] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [2179] = {.count = 1, .reusable = true}, SHIFT(871), + [2181] = {.count = 1, .reusable = true}, SHIFT(872), + [2183] = {.count = 1, .reusable = true}, SHIFT(874), + [2185] = {.count = 1, .reusable = true}, SHIFT(876), + [2187] = {.count = 1, .reusable = false}, SHIFT(878), + [2189] = {.count = 1, .reusable = true}, SHIFT(878), + [2191] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [2193] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [2195] = {.count = 1, .reusable = true}, SHIFT(879), + [2197] = {.count = 1, .reusable = true}, SHIFT(881), + [2199] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [2201] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [2203] = {.count = 1, .reusable = true}, SHIFT(884), + [2205] = {.count = 1, .reusable = false}, SHIFT(583), + [2207] = {.count = 1, .reusable = false}, SHIFT(591), + [2209] = {.count = 1, .reusable = false}, SHIFT(587), + [2211] = {.count = 1, .reusable = false}, SHIFT(887), + [2213] = {.count = 1, .reusable = true}, SHIFT(887), + [2215] = {.count = 1, .reusable = false}, SHIFT(888), + [2217] = {.count = 1, .reusable = true}, SHIFT(888), + [2219] = {.count = 1, .reusable = false}, SHIFT(889), + [2221] = {.count = 1, .reusable = true}, SHIFT(889), + [2223] = {.count = 1, .reusable = false}, SHIFT(890), + [2225] = {.count = 1, .reusable = true}, SHIFT(890), + [2227] = {.count = 1, .reusable = false}, SHIFT(891), + [2229] = {.count = 1, .reusable = true}, SHIFT(891), + [2231] = {.count = 1, .reusable = false}, SHIFT(892), + [2233] = {.count = 1, .reusable = true}, SHIFT(892), + [2235] = {.count = 1, .reusable = false}, SHIFT(893), + [2237] = {.count = 1, .reusable = true}, SHIFT(893), + [2239] = {.count = 1, .reusable = false}, SHIFT(894), + [2241] = {.count = 1, .reusable = true}, SHIFT(894), + [2243] = {.count = 1, .reusable = false}, SHIFT(895), + [2245] = {.count = 1, .reusable = true}, SHIFT(895), + [2247] = {.count = 1, .reusable = false}, SHIFT(896), + [2249] = {.count = 1, .reusable = true}, SHIFT(896), + [2251] = {.count = 1, .reusable = true}, SHIFT(897), + [2253] = {.count = 1, .reusable = true}, SHIFT(898), + [2255] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [2257] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [2259] = {.count = 1, .reusable = true}, SHIFT(899), + [2261] = {.count = 1, .reusable = true}, SHIFT(900), + [2263] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), + [2265] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [2267] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [2269] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [2271] = {.count = 1, .reusable = true}, SHIFT(902), + [2273] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [2275] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [2277] = {.count = 1, .reusable = false}, SHIFT(905), + [2279] = {.count = 1, .reusable = true}, SHIFT(905), + [2281] = {.count = 1, .reusable = true}, SHIFT(904), + [2283] = {.count = 1, .reusable = false}, SHIFT(918), + [2285] = {.count = 1, .reusable = true}, SHIFT(918), + [2287] = {.count = 1, .reusable = true}, SHIFT(919), + [2289] = {.count = 1, .reusable = false}, SHIFT(922), + [2291] = {.count = 1, .reusable = true}, SHIFT(922), + [2293] = {.count = 1, .reusable = false}, SHIFT(923), + [2295] = {.count = 1, .reusable = true}, SHIFT(923), + [2297] = {.count = 1, .reusable = false}, SHIFT(924), + [2299] = {.count = 1, .reusable = true}, SHIFT(924), + [2301] = {.count = 1, .reusable = false}, SHIFT(925), + [2303] = {.count = 1, .reusable = true}, SHIFT(925), + [2305] = {.count = 1, .reusable = false}, SHIFT(926), + [2307] = {.count = 1, .reusable = true}, SHIFT(926), + [2309] = {.count = 1, .reusable = false}, SHIFT(927), + [2311] = {.count = 1, .reusable = true}, SHIFT(927), + [2313] = {.count = 1, .reusable = false}, SHIFT(928), + [2315] = {.count = 1, .reusable = true}, SHIFT(928), + [2317] = {.count = 1, .reusable = false}, SHIFT(929), + [2319] = {.count = 1, .reusable = true}, SHIFT(929), + [2321] = {.count = 1, .reusable = false}, SHIFT(930), + [2323] = {.count = 1, .reusable = true}, SHIFT(930), + [2325] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [2327] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [2329] = {.count = 1, .reusable = false}, SHIFT(931), + [2331] = {.count = 1, .reusable = true}, SHIFT(931), + [2333] = {.count = 1, .reusable = false}, SHIFT(932), + [2335] = {.count = 1, .reusable = true}, SHIFT(932), + [2337] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [2339] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [2341] = {.count = 1, .reusable = true}, SHIFT(933), + [2343] = {.count = 1, .reusable = false}, SHIFT(937), + [2345] = {.count = 1, .reusable = true}, SHIFT(937), + [2347] = {.count = 1, .reusable = true}, SHIFT(936), + [2349] = {.count = 1, .reusable = false}, SHIFT(950), + [2351] = {.count = 1, .reusable = true}, SHIFT(950), + [2353] = {.count = 1, .reusable = true}, SHIFT(951), + [2355] = {.count = 1, .reusable = false}, SHIFT(954), + [2357] = {.count = 1, .reusable = true}, SHIFT(954), + [2359] = {.count = 1, .reusable = false}, SHIFT(955), + [2361] = {.count = 1, .reusable = true}, SHIFT(955), + [2363] = {.count = 1, .reusable = false}, SHIFT(956), + [2365] = {.count = 1, .reusable = true}, SHIFT(956), + [2367] = {.count = 1, .reusable = false}, SHIFT(957), + [2369] = {.count = 1, .reusable = true}, SHIFT(957), + [2371] = {.count = 1, .reusable = false}, SHIFT(958), + [2373] = {.count = 1, .reusable = true}, SHIFT(958), + [2375] = {.count = 1, .reusable = false}, SHIFT(959), + [2377] = {.count = 1, .reusable = true}, SHIFT(959), + [2379] = {.count = 1, .reusable = false}, SHIFT(960), + [2381] = {.count = 1, .reusable = true}, SHIFT(960), + [2383] = {.count = 1, .reusable = false}, SHIFT(961), + [2385] = {.count = 1, .reusable = true}, SHIFT(961), + [2387] = {.count = 1, .reusable = false}, SHIFT(962), + [2389] = {.count = 1, .reusable = true}, SHIFT(962), + [2391] = {.count = 1, .reusable = false}, SHIFT(963), + [2393] = {.count = 1, .reusable = true}, SHIFT(963), + [2395] = {.count = 1, .reusable = false}, SHIFT(964), + [2397] = {.count = 1, .reusable = true}, SHIFT(964), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [2401] = {.count = 1, .reusable = false}, SHIFT(965), + [2403] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [2405] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [2407] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [2409] = {.count = 1, .reusable = true}, SHIFT(967), + [2411] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [2413] = {.count = 1, .reusable = false}, SHIFT(969), + [2415] = {.count = 1, .reusable = true}, SHIFT(969), + [2417] = {.count = 1, .reusable = true}, SHIFT(968), + [2419] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [2421] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [2423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(377), + [2426] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3), + [2428] = {.count = 1, .reusable = false}, SHIFT(972), + [2430] = {.count = 1, .reusable = true}, SHIFT(972), + [2432] = {.count = 1, .reusable = true}, SHIFT(971), + [2434] = {.count = 1, .reusable = true}, SHIFT(973), + [2436] = {.count = 1, .reusable = false}, SHIFT(974), + [2438] = {.count = 1, .reusable = true}, SHIFT(974), + [2440] = {.count = 1, .reusable = false}, SHIFT(977), + [2442] = {.count = 1, .reusable = true}, SHIFT(977), + [2444] = {.count = 1, .reusable = true}, SHIFT(976), + [2446] = {.count = 1, .reusable = true}, SHIFT(978), + [2448] = {.count = 1, .reusable = false}, SHIFT(979), + [2450] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2452] = {.count = 1, .reusable = false}, SHIFT(980), + [2454] = {.count = 1, .reusable = false}, SHIFT(981), + [2456] = {.count = 1, .reusable = false}, SHIFT(982), + [2458] = {.count = 1, .reusable = true}, SHIFT(985), + [2460] = {.count = 1, .reusable = false}, SHIFT(986), + [2462] = {.count = 1, .reusable = false}, SHIFT(987), + [2464] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2466] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2468] = {.count = 1, .reusable = false}, SHIFT(988), + [2470] = {.count = 1, .reusable = true}, SHIFT(989), + [2472] = {.count = 1, .reusable = false}, SHIFT(990), + [2474] = {.count = 1, .reusable = true}, SHIFT(990), + [2476] = {.count = 1, .reusable = true}, SHIFT(993), + [2478] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2480] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2482] = {.count = 1, .reusable = false}, SHIFT(996), + [2484] = {.count = 1, .reusable = true}, SHIFT(996), + [2486] = {.count = 1, .reusable = true}, SHIFT(998), + [2488] = {.count = 1, .reusable = true}, SHIFT(999), + [2490] = {.count = 1, .reusable = false}, SHIFT(1000), + [2492] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [2494] = {.count = 1, .reusable = true}, SHIFT(1003), + [2496] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [2498] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [2500] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [2502] = {.count = 1, .reusable = false}, SHIFT(1008), + [2504] = {.count = 1, .reusable = true}, SHIFT(1008), + [2506] = {.count = 1, .reusable = true}, SHIFT(1005), + [2508] = {.count = 1, .reusable = true}, SHIFT(1006), + [2510] = {.count = 1, .reusable = true}, SHIFT(1009), + [2512] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [2514] = {.count = 1, .reusable = false}, SHIFT(1014), + [2516] = {.count = 1, .reusable = true}, SHIFT(1014), + [2518] = {.count = 1, .reusable = true}, SHIFT(1013), + [2520] = {.count = 1, .reusable = false}, SHIFT(1016), + [2522] = {.count = 1, .reusable = true}, SHIFT(1016), + [2524] = {.count = 1, .reusable = true}, SHIFT(1015), + [2526] = {.count = 1, .reusable = true}, SHIFT(1017), + [2528] = {.count = 1, .reusable = false}, SHIFT(1018), + [2530] = {.count = 1, .reusable = true}, SHIFT(1018), + [2532] = {.count = 1, .reusable = false}, SHIFT(68), + [2534] = {.count = 1, .reusable = false}, SHIFT(1019), + [2536] = {.count = 1, .reusable = true}, SHIFT(1019), + [2538] = {.count = 1, .reusable = true}, SHIFT(1020), + [2540] = {.count = 1, .reusable = true}, SHIFT(1022), + [2542] = {.count = 1, .reusable = true}, SHIFT(1023), + [2544] = {.count = 1, .reusable = true}, SHIFT(1024), + [2546] = {.count = 1, .reusable = true}, SHIFT(1025), + [2548] = {.count = 1, .reusable = false}, SHIFT(1026), + [2550] = {.count = 1, .reusable = false}, SHIFT(1029), + [2552] = {.count = 1, .reusable = false}, SHIFT(1032), + [2554] = {.count = 1, .reusable = true}, SHIFT(1032), + [2556] = {.count = 1, .reusable = true}, SHIFT(1031), + [2558] = {.count = 1, .reusable = false}, SHIFT(1033), + [2560] = {.count = 1, .reusable = true}, SHIFT(1037), + [2562] = {.count = 1, .reusable = false}, SHIFT(1036), + [2564] = {.count = 1, .reusable = true}, SHIFT(1038), + [2566] = {.count = 1, .reusable = false}, SHIFT(1044), + [2568] = {.count = 1, .reusable = false}, SHIFT(1041), + [2570] = {.count = 1, .reusable = false}, SHIFT(1042), + [2572] = {.count = 1, .reusable = false}, SHIFT(1043), + [2574] = {.count = 1, .reusable = true}, SHIFT(1046), + [2576] = {.count = 1, .reusable = false}, SHIFT(1048), + [2578] = {.count = 1, .reusable = true}, SHIFT(1050), + [2580] = {.count = 1, .reusable = false}, SHIFT(1052), + [2582] = {.count = 1, .reusable = true}, SHIFT(1053), + [2584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(436), + [2587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), + [2590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), + [2593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(437), + [2596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(438), + [2599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(439), + [2602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(440), + [2605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(441), + [2608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(442), + [2611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(443), + [2614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(444), + [2617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(445), + [2620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(446), + [2623] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), + [2626] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), + [2629] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), + [2632] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), + [2635] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(452), + [2638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), + [2641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(457), + [2644] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(454), + [2647] = {.count = 1, .reusable = true}, SHIFT(1055), + [2649] = {.count = 1, .reusable = true}, SHIFT(1058), + [2651] = {.count = 1, .reusable = false}, SHIFT(1058), + [2653] = {.count = 1, .reusable = true}, SHIFT(1061), + [2655] = {.count = 1, .reusable = false}, SHIFT(1064), + [2657] = {.count = 1, .reusable = true}, SHIFT(1064), + [2659] = {.count = 1, .reusable = true}, SHIFT(1063), + [2661] = {.count = 1, .reusable = true}, SHIFT(1065), + [2663] = {.count = 1, .reusable = true}, SHIFT(1066), + [2665] = {.count = 1, .reusable = false}, SHIFT(1066), + [2667] = {.count = 1, .reusable = false}, SHIFT(1068), + [2669] = {.count = 1, .reusable = true}, SHIFT(1069), + [2671] = {.count = 1, .reusable = true}, SHIFT(1072), + [2673] = {.count = 1, .reusable = true}, SHIFT(1074), + [2675] = {.count = 1, .reusable = false}, SHIFT(1075), + [2677] = {.count = 1, .reusable = true}, SHIFT(1076), + [2679] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [2681] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [2683] = {.count = 1, .reusable = true}, SHIFT(1079), + [2685] = {.count = 1, .reusable = true}, SHIFT(1080), + [2687] = {.count = 1, .reusable = false}, SHIFT(1081), + [2689] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [2691] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [2693] = {.count = 1, .reusable = true}, SHIFT(1082), + [2695] = {.count = 1, .reusable = false}, SHIFT(492), + [2697] = {.count = 1, .reusable = true}, SHIFT(492), + [2699] = {.count = 1, .reusable = false}, SHIFT(495), + [2701] = {.count = 1, .reusable = false}, SHIFT(496), + [2703] = {.count = 1, .reusable = true}, SHIFT(497), + [2705] = {.count = 1, .reusable = true}, SHIFT(491), + [2707] = {.count = 1, .reusable = true}, SHIFT(493), + [2709] = {.count = 1, .reusable = false}, SHIFT(499), + [2711] = {.count = 1, .reusable = true}, SHIFT(1083), + [2713] = {.count = 1, .reusable = true}, SHIFT(1084), + [2715] = {.count = 1, .reusable = false}, SHIFT(77), + [2717] = {.count = 1, .reusable = false}, SHIFT(80), + [2719] = {.count = 1, .reusable = false}, SHIFT(1085), + [2721] = {.count = 1, .reusable = true}, SHIFT(1085), + [2723] = {.count = 1, .reusable = false}, SHIFT(1086), + [2725] = {.count = 1, .reusable = true}, SHIFT(1086), + [2727] = {.count = 1, .reusable = true}, SHIFT(1087), + [2729] = {.count = 1, .reusable = true}, SHIFT(1088), + [2731] = {.count = 1, .reusable = false}, SHIFT(1089), + [2733] = {.count = 1, .reusable = true}, SHIFT(1089), + [2735] = {.count = 1, .reusable = true}, SHIFT(1090), + [2737] = {.count = 1, .reusable = true}, SHIFT(1091), + [2739] = {.count = 1, .reusable = false}, SHIFT(1092), + [2741] = {.count = 1, .reusable = true}, SHIFT(1094), + [2743] = {.count = 1, .reusable = false}, SHIFT(1094), + [2745] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [2747] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [2749] = {.count = 1, .reusable = true}, SHIFT(1096), + [2751] = {.count = 1, .reusable = false}, SHIFT(1098), + [2753] = {.count = 1, .reusable = true}, SHIFT(1098), + [2755] = {.count = 1, .reusable = true}, SHIFT(1097), + [2757] = {.count = 1, .reusable = true}, SHIFT(1099), + [2759] = {.count = 1, .reusable = true}, SHIFT(820), + [2761] = {.count = 1, .reusable = true}, SHIFT(1101), + [2763] = {.count = 1, .reusable = true}, SHIFT(1104), + [2765] = {.count = 1, .reusable = true}, SHIFT(1105), + [2767] = {.count = 1, .reusable = true}, SHIFT(1106), + [2769] = {.count = 1, .reusable = true}, SHIFT(1107), + [2771] = {.count = 1, .reusable = true}, SHIFT(1114), + [2773] = {.count = 1, .reusable = false}, SHIFT(1108), + [2775] = {.count = 1, .reusable = false}, SHIFT(1106), + [2777] = {.count = 1, .reusable = false}, SHIFT(1109), + [2779] = {.count = 1, .reusable = true}, SHIFT(1110), + [2781] = {.count = 1, .reusable = true}, SHIFT(1111), + [2783] = {.count = 1, .reusable = true}, SHIFT(1112), + [2785] = {.count = 1, .reusable = false}, SHIFT(1104), + [2787] = {.count = 1, .reusable = false}, SHIFT(1113), + [2789] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), + [2791] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [2793] = {.count = 1, .reusable = true}, SHIFT(1115), + [2795] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2797] = {.count = 1, .reusable = true}, SHIFT(1116), + [2799] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(832), + [2802] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2804] = {.count = 1, .reusable = false}, SHIFT(1121), + [2806] = {.count = 1, .reusable = true}, SHIFT(1122), + [2808] = {.count = 1, .reusable = false}, SHIFT(1123), + [2810] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [2812] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2814] = {.count = 1, .reusable = true}, SHIFT(1125), + [2816] = {.count = 1, .reusable = false}, SHIFT(1127), + [2818] = {.count = 1, .reusable = true}, SHIFT(1127), + [2820] = {.count = 1, .reusable = true}, SHIFT(1126), + [2822] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [2824] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [2826] = {.count = 1, .reusable = true}, SHIFT(1128), + [2828] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [2830] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [2832] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), + [2834] = {.count = 1, .reusable = true}, SHIFT(1129), + [2836] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [2838] = {.count = 1, .reusable = false}, SHIFT(1131), + [2840] = {.count = 1, .reusable = true}, SHIFT(1131), + [2842] = {.count = 1, .reusable = true}, SHIFT(1130), + [2844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(543), + [2847] = {.count = 1, .reusable = true}, SHIFT(1133), + [2849] = {.count = 1, .reusable = false}, SHIFT(1135), + [2851] = {.count = 1, .reusable = true}, SHIFT(1135), + [2853] = {.count = 1, .reusable = true}, SHIFT(1136), + [2855] = {.count = 1, .reusable = false}, SHIFT(1137), + [2857] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [2859] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [2861] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [2863] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [2865] = {.count = 1, .reusable = false}, SHIFT(1139), + [2867] = {.count = 1, .reusable = false}, SHIFT(1141), + [2869] = {.count = 1, .reusable = true}, SHIFT(1141), + [2871] = {.count = 1, .reusable = true}, SHIFT(1140), + [2873] = {.count = 1, .reusable = true}, SHIFT(1142), + [2875] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [2877] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [2879] = {.count = 1, .reusable = true}, SHIFT(1143), + [2881] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [2883] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [2885] = {.count = 1, .reusable = false}, SHIFT(1144), + [2887] = {.count = 1, .reusable = false}, SHIFT(1145), + [2889] = {.count = 1, .reusable = false}, SHIFT(1146), + [2891] = {.count = 1, .reusable = false}, SHIFT(1147), + [2893] = {.count = 1, .reusable = false}, SHIFT(1150), + [2895] = {.count = 1, .reusable = true}, SHIFT(1150), + [2897] = {.count = 1, .reusable = true}, SHIFT(1149), + [2899] = {.count = 1, .reusable = false}, SHIFT(1154), + [2901] = {.count = 1, .reusable = false}, SHIFT(1151), + [2903] = {.count = 1, .reusable = false}, SHIFT(1152), + [2905] = {.count = 1, .reusable = false}, SHIFT(1153), + [2907] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [2909] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [2911] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2), + [2914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(566), + [2917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(42), + [2920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7), + [2923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(8), + [2926] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(9), + [2929] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), + [2932] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(13), + [2935] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2937] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), + [2940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(568), + [2943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(569), + [2946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(17), + [2949] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(20), + [2952] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(42), + [2955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), + [2958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(570), + [2961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(25), + [2964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(571), + [2967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(28), + [2970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(572), + [2973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), + [2976] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(31), + [2979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), + [2982] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(6), + [2985] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4), + [2988] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [2990] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2992] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2994] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2996] = {.count = 1, .reusable = true}, SHIFT(1156), + [2998] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1157), + [3001] = {.count = 1, .reusable = false}, SHIFT(585), + [3003] = {.count = 1, .reusable = true}, SHIFT(585), + [3005] = {.count = 1, .reusable = false}, SHIFT(588), + [3007] = {.count = 1, .reusable = false}, SHIFT(589), + [3009] = {.count = 1, .reusable = true}, SHIFT(590), + [3011] = {.count = 1, .reusable = true}, SHIFT(584), + [3013] = {.count = 1, .reusable = true}, SHIFT(586), + [3015] = {.count = 1, .reusable = false}, SHIFT(592), + [3017] = {.count = 1, .reusable = true}, SHIFT(1158), + [3019] = {.count = 1, .reusable = true}, SHIFT(1159), + [3021] = {.count = 1, .reusable = false}, SHIFT(117), + [3023] = {.count = 1, .reusable = false}, SHIFT(115), + [3025] = {.count = 1, .reusable = false}, SHIFT(1160), + [3027] = {.count = 1, .reusable = true}, SHIFT(1160), + [3029] = {.count = 1, .reusable = true}, SHIFT(1161), + [3031] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), + [3033] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [3035] = {.count = 1, .reusable = true}, SHIFT(1162), + [3037] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [3039] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [3041] = {.count = 1, .reusable = true}, SHIFT(1165), + [3043] = {.count = 1, .reusable = false}, SHIFT(907), + [3045] = {.count = 1, .reusable = false}, SHIFT(915), + [3047] = {.count = 1, .reusable = false}, SHIFT(911), + [3049] = {.count = 1, .reusable = false}, SHIFT(1168), + [3051] = {.count = 1, .reusable = true}, SHIFT(1168), + [3053] = {.count = 1, .reusable = false}, SHIFT(1169), + [3055] = {.count = 1, .reusable = true}, SHIFT(1169), + [3057] = {.count = 1, .reusable = false}, SHIFT(1170), + [3059] = {.count = 1, .reusable = true}, SHIFT(1170), + [3061] = {.count = 1, .reusable = false}, SHIFT(1171), + [3063] = {.count = 1, .reusable = true}, SHIFT(1171), + [3065] = {.count = 1, .reusable = false}, SHIFT(1172), + [3067] = {.count = 1, .reusable = true}, SHIFT(1172), + [3069] = {.count = 1, .reusable = false}, SHIFT(1173), + [3071] = {.count = 1, .reusable = true}, SHIFT(1173), + [3073] = {.count = 1, .reusable = false}, SHIFT(1174), + [3075] = {.count = 1, .reusable = true}, SHIFT(1174), + [3077] = {.count = 1, .reusable = false}, SHIFT(1175), + [3079] = {.count = 1, .reusable = true}, SHIFT(1175), + [3081] = {.count = 1, .reusable = false}, SHIFT(1176), + [3083] = {.count = 1, .reusable = true}, SHIFT(1176), + [3085] = {.count = 1, .reusable = false}, SHIFT(1177), + [3087] = {.count = 1, .reusable = true}, SHIFT(1177), + [3089] = {.count = 1, .reusable = true}, SHIFT(1178), + [3091] = {.count = 1, .reusable = true}, SHIFT(1179), + [3093] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3095] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [3097] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(637), + [3102] = {.count = 1, .reusable = true}, SHIFT(1181), + [3104] = {.count = 1, .reusable = false}, SHIFT(939), + [3106] = {.count = 1, .reusable = false}, SHIFT(947), + [3108] = {.count = 1, .reusable = false}, SHIFT(943), + [3110] = {.count = 1, .reusable = false}, SHIFT(1184), + [3112] = {.count = 1, .reusable = true}, SHIFT(1184), + [3114] = {.count = 1, .reusable = false}, SHIFT(1185), + [3116] = {.count = 1, .reusable = true}, SHIFT(1185), + [3118] = {.count = 1, .reusable = false}, SHIFT(1186), + [3120] = {.count = 1, .reusable = true}, SHIFT(1186), + [3122] = {.count = 1, .reusable = false}, SHIFT(1187), + [3124] = {.count = 1, .reusable = true}, SHIFT(1187), + [3126] = {.count = 1, .reusable = false}, SHIFT(1188), + [3128] = {.count = 1, .reusable = true}, SHIFT(1188), + [3130] = {.count = 1, .reusable = false}, SHIFT(1189), + [3132] = {.count = 1, .reusable = true}, SHIFT(1189), + [3134] = {.count = 1, .reusable = false}, SHIFT(1190), + [3136] = {.count = 1, .reusable = true}, SHIFT(1190), + [3138] = {.count = 1, .reusable = false}, SHIFT(1191), + [3140] = {.count = 1, .reusable = true}, SHIFT(1191), + [3142] = {.count = 1, .reusable = false}, SHIFT(1192), + [3144] = {.count = 1, .reusable = true}, SHIFT(1192), + [3146] = {.count = 1, .reusable = false}, SHIFT(1193), + [3148] = {.count = 1, .reusable = true}, SHIFT(1193), + [3150] = {.count = 1, .reusable = true}, SHIFT(1194), + [3152] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [3154] = {.count = 1, .reusable = true}, SHIFT(1195), + [3156] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [3158] = {.count = 1, .reusable = true}, SHIFT(1197), + [3160] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3162] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(34), + [3165] = {.count = 1, .reusable = true}, SHIFT(1198), + [3167] = {.count = 1, .reusable = false}, SHIFT(1200), + [3169] = {.count = 1, .reusable = true}, SHIFT(1200), + [3171] = {.count = 1, .reusable = true}, SHIFT(1201), + [3173] = {.count = 1, .reusable = false}, SHIFT(1202), + [3175] = {.count = 1, .reusable = false}, SHIFT(1204), + [3177] = {.count = 1, .reusable = true}, SHIFT(1204), + [3179] = {.count = 1, .reusable = true}, SHIFT(1203), + [3181] = {.count = 1, .reusable = true}, SHIFT(1205), + [3183] = {.count = 1, .reusable = false}, SHIFT(1206), + [3185] = {.count = 1, .reusable = true}, SHIFT(1209), + [3187] = {.count = 1, .reusable = true}, SHIFT(1210), + [3189] = {.count = 1, .reusable = false}, SHIFT(1211), + [3191] = {.count = 1, .reusable = false}, SHIFT(1212), [3193] = {.count = 1, .reusable = true}, SHIFT(1213), - [3195] = {.count = 1, .reusable = false}, SHIFT(1214), - [3197] = {.count = 1, .reusable = true}, SHIFT(1214), - [3199] = {.count = 1, .reusable = true}, SHIFT(1215), - [3201] = {.count = 1, .reusable = false}, SHIFT(1217), - [3203] = {.count = 1, .reusable = true}, SHIFT(1217), - [3205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(694), - [3208] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(699), - [3213] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3215] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [3217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(705), - [3220] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(60), - [3224] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [3227] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [3229] = {.count = 1, .reusable = true}, SHIFT(1221), - [3231] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3233] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3235] = {.count = 1, .reusable = true}, SHIFT(1223), - [3237] = {.count = 1, .reusable = false}, SHIFT(1225), - [3239] = {.count = 1, .reusable = true}, SHIFT(1225), - [3241] = {.count = 1, .reusable = false}, SHIFT(1227), - [3243] = {.count = 1, .reusable = true}, SHIFT(1227), - [3245] = {.count = 1, .reusable = true}, SHIFT(1226), - [3247] = {.count = 1, .reusable = true}, SHIFT(1228), - [3249] = {.count = 1, .reusable = false}, SHIFT(1229), - [3251] = {.count = 1, .reusable = true}, SHIFT(1229), - [3253] = {.count = 1, .reusable = false}, SHIFT(1231), - [3255] = {.count = 1, .reusable = true}, SHIFT(1231), - [3257] = {.count = 1, .reusable = true}, SHIFT(1230), - [3259] = {.count = 1, .reusable = true}, SHIFT(1232), - [3261] = {.count = 1, .reusable = true}, SHIFT(1233), - [3263] = {.count = 1, .reusable = false}, SHIFT(1233), - [3265] = {.count = 1, .reusable = true}, SHIFT(1236), - [3267] = {.count = 1, .reusable = true}, SHIFT(1238), - [3269] = {.count = 1, .reusable = true}, SHIFT(1239), - [3271] = {.count = 1, .reusable = false}, SHIFT(1242), - [3273] = {.count = 1, .reusable = true}, SHIFT(1243), - [3275] = {.count = 1, .reusable = true}, SHIFT(1245), - [3277] = {.count = 1, .reusable = false}, SHIFT(1245), - [3279] = {.count = 1, .reusable = false}, SHIFT(1247), - [3281] = {.count = 1, .reusable = true}, SHIFT(1248), - [3283] = {.count = 1, .reusable = true}, SHIFT(1250), - [3285] = {.count = 1, .reusable = true}, SHIFT(1252), - [3287] = {.count = 1, .reusable = true}, SHIFT(1253), - [3289] = {.count = 1, .reusable = false}, SHIFT(1254), - [3291] = {.count = 1, .reusable = true}, SHIFT(1255), - [3293] = {.count = 1, .reusable = true}, SHIFT(1256), - [3295] = {.count = 1, .reusable = true}, SHIFT(1257), - [3297] = {.count = 1, .reusable = false}, SHIFT(1260), - [3299] = {.count = 1, .reusable = true}, SHIFT(1260), - [3301] = {.count = 1, .reusable = true}, SHIFT(1259), - [3303] = {.count = 1, .reusable = true}, SHIFT(1263), - [3305] = {.count = 1, .reusable = true}, SHIFT(1264), - [3307] = {.count = 1, .reusable = true}, SHIFT(1265), - [3309] = {.count = 1, .reusable = false}, SHIFT(1266), - [3311] = {.count = 1, .reusable = true}, SHIFT(1266), - [3313] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [3315] = {.count = 1, .reusable = true}, SHIFT(1268), - [3317] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), - [3319] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), - [3321] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [3323] = {.count = 1, .reusable = true}, SHIFT(1269), - [3325] = {.count = 1, .reusable = true}, SHIFT(247), - [3327] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), - [3329] = {.count = 1, .reusable = false}, SHIFT(1271), - [3331] = {.count = 1, .reusable = true}, SHIFT(1271), - [3333] = {.count = 1, .reusable = true}, SHIFT(1270), - [3335] = {.count = 1, .reusable = true}, SHIFT(1272), - [3337] = {.count = 1, .reusable = false}, SHIFT(1273), - [3339] = {.count = 1, .reusable = true}, SHIFT(1273), - [3341] = {.count = 1, .reusable = true}, SHIFT(1274), - [3343] = {.count = 1, .reusable = true}, SHIFT(1275), - [3345] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [3347] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [3349] = {.count = 1, .reusable = false}, SHIFT(1280), - [3351] = {.count = 1, .reusable = true}, SHIFT(1280), - [3353] = {.count = 1, .reusable = true}, SHIFT(1279), - [3355] = {.count = 1, .reusable = true}, SHIFT(1281), - [3357] = {.count = 1, .reusable = true}, SHIFT(1282), - [3359] = {.count = 1, .reusable = true}, SHIFT(1283), - [3361] = {.count = 1, .reusable = false}, SHIFT(1286), - [3363] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [3365] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [3367] = {.count = 1, .reusable = false}, SHIFT(276), - [3369] = {.count = 1, .reusable = false}, SHIFT(1288), - [3371] = {.count = 1, .reusable = true}, SHIFT(1288), - [3373] = {.count = 1, .reusable = false}, SHIFT(1289), - [3375] = {.count = 1, .reusable = true}, SHIFT(1292), - [3377] = {.count = 1, .reusable = true}, SHIFT(1293), - [3379] = {.count = 1, .reusable = false}, SHIFT(1294), - [3381] = {.count = 1, .reusable = false}, SHIFT(1295), - [3383] = {.count = 1, .reusable = true}, SHIFT(1296), - [3385] = {.count = 1, .reusable = true}, SHIFT(1297), - [3387] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [3389] = {.count = 1, .reusable = true}, SHIFT(1301), - [3391] = {.count = 1, .reusable = false}, SHIFT(1302), - [3393] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [3395] = {.count = 1, .reusable = false}, SHIFT(1307), - [3397] = {.count = 1, .reusable = true}, SHIFT(1308), - [3399] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [3401] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [3403] = {.count = 1, .reusable = true}, SHIFT(1310), - [3405] = {.count = 1, .reusable = true}, SHIFT(1313), - [3407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(844), - [3410] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [3412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(846), - [3415] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(847), - [3418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(850), - [3421] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [3423] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [3425] = {.count = 1, .reusable = true}, SHIFT(1314), - [3427] = {.count = 1, .reusable = true}, SHIFT(1315), - [3429] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [3431] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [3433] = {.count = 1, .reusable = true}, SHIFT(1316), - [3435] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [3437] = {.count = 1, .reusable = false}, SHIFT(1318), - [3439] = {.count = 1, .reusable = true}, SHIFT(1318), - [3441] = {.count = 1, .reusable = true}, SHIFT(1317), - [3443] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [3445] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [3447] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [3449] = {.count = 1, .reusable = true}, SHIFT(1319), - [3451] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(869), - [3454] = {.count = 1, .reusable = true}, SHIFT(1320), - [3456] = {.count = 1, .reusable = false}, SHIFT(1322), - [3458] = {.count = 1, .reusable = true}, SHIFT(1322), - [3460] = {.count = 1, .reusable = true}, SHIFT(1323), - [3462] = {.count = 1, .reusable = false}, SHIFT(1325), - [3464] = {.count = 1, .reusable = true}, SHIFT(1325), - [3466] = {.count = 1, .reusable = true}, SHIFT(1324), - [3468] = {.count = 1, .reusable = true}, SHIFT(1326), - [3470] = {.count = 1, .reusable = true}, SHIFT(1327), - [3472] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3474] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), - [3476] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [3478] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(882), - [3481] = {.count = 1, .reusable = true}, SHIFT(1328), - [3483] = {.count = 1, .reusable = false}, SHIFT(1330), - [3485] = {.count = 1, .reusable = true}, SHIFT(1330), - [3487] = {.count = 1, .reusable = true}, SHIFT(1331), - [3489] = {.count = 1, .reusable = false}, SHIFT(1333), - [3491] = {.count = 1, .reusable = true}, SHIFT(1333), - [3493] = {.count = 1, .reusable = true}, SHIFT(1332), - [3495] = {.count = 1, .reusable = true}, SHIFT(1334), - [3497] = {.count = 1, .reusable = false}, SHIFT(1335), - [3499] = {.count = 1, .reusable = false}, SHIFT(349), - [3501] = {.count = 1, .reusable = false}, SHIFT(350), - [3503] = {.count = 1, .reusable = false}, SHIFT(910), - [3505] = {.count = 1, .reusable = true}, SHIFT(904), - [3507] = {.count = 1, .reusable = true}, SHIFT(910), - [3509] = {.count = 1, .reusable = true}, SHIFT(911), - [3511] = {.count = 1, .reusable = true}, SHIFT(906), - [3513] = {.count = 1, .reusable = false}, SHIFT(907), - [3515] = {.count = 1, .reusable = false}, SHIFT(913), - [3517] = {.count = 1, .reusable = false}, SHIFT(914), - [3519] = {.count = 1, .reusable = true}, SHIFT(1336), - [3521] = {.count = 1, .reusable = true}, SHIFT(1337), - [3523] = {.count = 1, .reusable = false}, SHIFT(1338), - [3525] = {.count = 1, .reusable = true}, SHIFT(1338), - [3527] = {.count = 1, .reusable = false}, SHIFT(360), - [3529] = {.count = 1, .reusable = false}, SHIFT(361), - [3531] = {.count = 1, .reusable = false}, SHIFT(940), - [3533] = {.count = 1, .reusable = true}, SHIFT(934), - [3535] = {.count = 1, .reusable = true}, SHIFT(940), - [3537] = {.count = 1, .reusable = true}, SHIFT(941), - [3539] = {.count = 1, .reusable = true}, SHIFT(936), - [3541] = {.count = 1, .reusable = false}, SHIFT(937), - [3543] = {.count = 1, .reusable = false}, SHIFT(943), - [3545] = {.count = 1, .reusable = false}, SHIFT(944), - [3547] = {.count = 1, .reusable = true}, SHIFT(1339), - [3549] = {.count = 1, .reusable = true}, SHIFT(1340), - [3551] = {.count = 1, .reusable = false}, SHIFT(1341), - [3553] = {.count = 1, .reusable = true}, SHIFT(1341), - [3555] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [3557] = {.count = 1, .reusable = true}, SHIFT(391), - [3559] = {.count = 1, .reusable = true}, SHIFT(1342), - [3561] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3563] = {.count = 1, .reusable = true}, SHIFT(1343), - [3565] = {.count = 1, .reusable = false}, SHIFT(1194), - [3567] = {.count = 1, .reusable = false}, SHIFT(1198), - [3569] = {.count = 1, .reusable = false}, SHIFT(1191), - [3571] = {.count = 1, .reusable = false}, SHIFT(1347), - [3573] = {.count = 1, .reusable = true}, SHIFT(1347), - [3575] = {.count = 1, .reusable = false}, SHIFT(1348), - [3577] = {.count = 1, .reusable = true}, SHIFT(1348), - [3579] = {.count = 1, .reusable = false}, SHIFT(1349), - [3581] = {.count = 1, .reusable = true}, SHIFT(1349), - [3583] = {.count = 1, .reusable = false}, SHIFT(1350), - [3585] = {.count = 1, .reusable = true}, SHIFT(1350), - [3587] = {.count = 1, .reusable = false}, SHIFT(1351), - [3589] = {.count = 1, .reusable = true}, SHIFT(1351), - [3591] = {.count = 1, .reusable = false}, SHIFT(1352), - [3593] = {.count = 1, .reusable = true}, SHIFT(1352), - [3595] = {.count = 1, .reusable = false}, SHIFT(1353), - [3597] = {.count = 1, .reusable = true}, SHIFT(1353), - [3599] = {.count = 1, .reusable = false}, SHIFT(1354), - [3601] = {.count = 1, .reusable = true}, SHIFT(1354), - [3603] = {.count = 1, .reusable = false}, SHIFT(1355), - [3605] = {.count = 1, .reusable = true}, SHIFT(1355), - [3607] = {.count = 1, .reusable = false}, SHIFT(1356), - [3609] = {.count = 1, .reusable = true}, SHIFT(1356), - [3611] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [3613] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [3615] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3617] = {.count = 1, .reusable = true}, SHIFT(1357), - [3619] = {.count = 1, .reusable = true}, SHIFT(1358), - [3621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1359), - [3624] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3626] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3628] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3630] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3632] = {.count = 1, .reusable = true}, SHIFT(1362), - [3634] = {.count = 1, .reusable = true}, SHIFT(1365), - [3636] = {.count = 1, .reusable = false}, SHIFT(1367), - [3638] = {.count = 1, .reusable = true}, SHIFT(1367), - [3640] = {.count = 1, .reusable = true}, SHIFT(1368), - [3642] = {.count = 1, .reusable = false}, SHIFT(1370), - [3644] = {.count = 1, .reusable = true}, SHIFT(1370), - [3646] = {.count = 1, .reusable = true}, SHIFT(1369), - [3648] = {.count = 1, .reusable = true}, SHIFT(1371), - [3650] = {.count = 1, .reusable = false}, SHIFT(1372), - [3652] = {.count = 1, .reusable = true}, SHIFT(1372), - [3654] = {.count = 1, .reusable = true}, SHIFT(1373), - [3656] = {.count = 1, .reusable = true}, SHIFT(1374), - [3658] = {.count = 1, .reusable = false}, SHIFT(1377), - [3660] = {.count = 1, .reusable = true}, SHIFT(1377), - [3662] = {.count = 1, .reusable = true}, SHIFT(1376), - [3664] = {.count = 1, .reusable = true}, SHIFT(1380), - [3666] = {.count = 1, .reusable = true}, SHIFT(1381), - [3668] = {.count = 1, .reusable = true}, SHIFT(1382), - [3670] = {.count = 1, .reusable = false}, SHIFT(1383), - [3672] = {.count = 1, .reusable = true}, SHIFT(1383), - [3674] = {.count = 1, .reusable = true}, SHIFT(1385), - [3676] = {.count = 1, .reusable = true}, SHIFT(1386), - [3678] = {.count = 1, .reusable = false}, SHIFT(1388), - [3680] = {.count = 1, .reusable = true}, SHIFT(1388), - [3682] = {.count = 1, .reusable = true}, SHIFT(1387), - [3684] = {.count = 1, .reusable = true}, SHIFT(1389), - [3686] = {.count = 1, .reusable = false}, SHIFT(1390), - [3688] = {.count = 1, .reusable = true}, SHIFT(1391), - [3690] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [3692] = {.count = 1, .reusable = true}, SHIFT(1392), - [3694] = {.count = 1, .reusable = false}, SHIFT(1394), - [3696] = {.count = 1, .reusable = true}, SHIFT(1394), - [3698] = {.count = 1, .reusable = true}, SHIFT(1395), - [3700] = {.count = 1, .reusable = false}, SHIFT(1396), - [3702] = {.count = 1, .reusable = false}, SHIFT(1398), - [3704] = {.count = 1, .reusable = true}, SHIFT(1398), - [3706] = {.count = 1, .reusable = true}, SHIFT(1397), - [3708] = {.count = 1, .reusable = false}, SHIFT(1399), - [3710] = {.count = 1, .reusable = false}, SHIFT(1400), - [3712] = {.count = 1, .reusable = false}, SHIFT(1401), - [3714] = {.count = 1, .reusable = false}, SHIFT(1402), - [3716] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), - [3719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [3722] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(203), - [3727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), - [3730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(201), - [3733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [3736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1079), - [3739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1080), - [3742] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [3745] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9), - [3748] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), - [3751] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [3756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), - [3759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1081), - [3762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1082), - [3765] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [3768] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), - [3771] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [3774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [3777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(18), - [3780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(19), - [3783] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [3786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [3789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [3792] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [3795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), - [3798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [3801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [3804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [3807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [3810] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [3813] = {.count = 1, .reusable = false}, SHIFT(1405), - [3815] = {.count = 1, .reusable = true}, SHIFT(1405), - [3817] = {.count = 1, .reusable = true}, SHIFT(1404), - [3819] = {.count = 1, .reusable = true}, SHIFT(1406), - [3821] = {.count = 1, .reusable = false}, SHIFT(1407), - [3823] = {.count = 1, .reusable = true}, SHIFT(1407), - [3825] = {.count = 1, .reusable = false}, SHIFT(1409), - [3827] = {.count = 1, .reusable = true}, SHIFT(1409), - [3829] = {.count = 1, .reusable = true}, SHIFT(1408), - [3831] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [3833] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [3835] = {.count = 1, .reusable = true}, SHIFT(548), - [3837] = {.count = 1, .reusable = true}, SHIFT(1411), - [3839] = {.count = 1, .reusable = false}, SHIFT(1411), - [3841] = {.count = 1, .reusable = false}, SHIFT(1413), - [3843] = {.count = 1, .reusable = true}, SHIFT(1416), - [3845] = {.count = 1, .reusable = false}, SHIFT(1417), - [3847] = {.count = 1, .reusable = false}, SHIFT(1420), - [3849] = {.count = 1, .reusable = true}, SHIFT(1421), - [3851] = {.count = 1, .reusable = true}, SHIFT(1423), - [3853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1098), - [3856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1099), - [3859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1100), - [3862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1101), - [3865] = {.count = 1, .reusable = true}, SHIFT(1426), - [3867] = {.count = 1, .reusable = false}, SHIFT(1426), - [3869] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [3871] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [3873] = {.count = 1, .reusable = true}, SHIFT(1429), - [3875] = {.count = 1, .reusable = true}, SHIFT(1430), - [3877] = {.count = 1, .reusable = false}, SHIFT(1431), - [3879] = {.count = 1, .reusable = true}, SHIFT(1432), - [3881] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3883] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3885] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3887] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3889] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [3891] = {.count = 1, .reusable = true}, SHIFT(1434), - [3893] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [3895] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [3897] = {.count = 1, .reusable = true}, SHIFT(1435), - [3899] = {.count = 1, .reusable = false}, SHIFT(1437), - [3901] = {.count = 1, .reusable = true}, SHIFT(1437), - [3903] = {.count = 1, .reusable = false}, SHIFT(1439), - [3905] = {.count = 1, .reusable = true}, SHIFT(1439), - [3907] = {.count = 1, .reusable = true}, SHIFT(1438), - [3909] = {.count = 1, .reusable = true}, SHIFT(1440), - [3911] = {.count = 1, .reusable = false}, SHIFT(1441), - [3913] = {.count = 1, .reusable = true}, SHIFT(1441), - [3915] = {.count = 1, .reusable = true}, SHIFT(1442), - [3917] = {.count = 1, .reusable = false}, SHIFT(1444), - [3919] = {.count = 1, .reusable = true}, SHIFT(1444), - [3921] = {.count = 1, .reusable = false}, SHIFT(1446), - [3923] = {.count = 1, .reusable = true}, SHIFT(1446), - [3925] = {.count = 1, .reusable = true}, SHIFT(1445), - [3927] = {.count = 1, .reusable = true}, SHIFT(1447), - [3929] = {.count = 1, .reusable = false}, SHIFT(1448), - [3931] = {.count = 1, .reusable = true}, SHIFT(1448), - [3933] = {.count = 1, .reusable = false}, SHIFT(621), - [3935] = {.count = 1, .reusable = false}, SHIFT(1449), - [3937] = {.count = 1, .reusable = true}, SHIFT(1449), - [3939] = {.count = 1, .reusable = false}, SHIFT(644), - [3941] = {.count = 1, .reusable = false}, SHIFT(1450), - [3943] = {.count = 1, .reusable = true}, SHIFT(1450), - [3945] = {.count = 1, .reusable = false}, SHIFT(696), - [3947] = {.count = 1, .reusable = false}, SHIFT(698), - [3949] = {.count = 1, .reusable = false}, SHIFT(1196), - [3951] = {.count = 1, .reusable = true}, SHIFT(1190), - [3953] = {.count = 1, .reusable = true}, SHIFT(1196), - [3955] = {.count = 1, .reusable = true}, SHIFT(1197), - [3957] = {.count = 1, .reusable = true}, SHIFT(1192), - [3959] = {.count = 1, .reusable = false}, SHIFT(1193), - [3961] = {.count = 1, .reusable = false}, SHIFT(1199), - [3963] = {.count = 1, .reusable = false}, SHIFT(1200), - [3965] = {.count = 1, .reusable = true}, SHIFT(1451), - [3967] = {.count = 1, .reusable = true}, SHIFT(1452), - [3969] = {.count = 1, .reusable = false}, SHIFT(1453), - [3971] = {.count = 1, .reusable = true}, SHIFT(1453), - [3973] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3975] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3977] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3979] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3981] = {.count = 1, .reusable = true}, SHIFT(1455), - [3983] = {.count = 1, .reusable = true}, SHIFT(1457), - [3985] = {.count = 1, .reusable = false}, SHIFT(1459), - [3987] = {.count = 1, .reusable = true}, SHIFT(1459), - [3989] = {.count = 1, .reusable = true}, SHIFT(1461), - [3991] = {.count = 1, .reusable = false}, SHIFT(1463), - [3993] = {.count = 1, .reusable = true}, SHIFT(1463), - [3995] = {.count = 1, .reusable = true}, SHIFT(1464), - [3997] = {.count = 1, .reusable = true}, SHIFT(1465), - [3999] = {.count = 1, .reusable = false}, SHIFT(1467), - [4001] = {.count = 1, .reusable = true}, SHIFT(1467), - [4003] = {.count = 1, .reusable = true}, SHIFT(1466), - [4005] = {.count = 1, .reusable = true}, SHIFT(1468), - [4007] = {.count = 1, .reusable = false}, SHIFT(1469), - [4009] = {.count = 1, .reusable = true}, SHIFT(1470), - [4011] = {.count = 1, .reusable = false}, SHIFT(1472), - [4013] = {.count = 1, .reusable = true}, SHIFT(1472), - [4015] = {.count = 1, .reusable = true}, SHIFT(1471), - [4017] = {.count = 1, .reusable = true}, SHIFT(1473), - [4019] = {.count = 1, .reusable = false}, SHIFT(1474), - [4021] = {.count = 1, .reusable = true}, SHIFT(1474), - [4023] = {.count = 1, .reusable = true}, SHIFT(1475), - [4025] = {.count = 1, .reusable = false}, SHIFT(1477), - [4027] = {.count = 1, .reusable = true}, SHIFT(1477), - [4029] = {.count = 1, .reusable = false}, SHIFT(1479), - [4031] = {.count = 1, .reusable = true}, SHIFT(1479), - [4033] = {.count = 1, .reusable = true}, SHIFT(1478), - [4035] = {.count = 1, .reusable = true}, SHIFT(1480), - [4037] = {.count = 1, .reusable = true}, SHIFT(1481), - [4039] = {.count = 1, .reusable = true}, SHIFT(1482), - [4041] = {.count = 1, .reusable = false}, SHIFT(1485), - [4043] = {.count = 1, .reusable = true}, SHIFT(1486), - [4045] = {.count = 1, .reusable = false}, SHIFT(1488), - [4047] = {.count = 1, .reusable = true}, SHIFT(1488), - [4049] = {.count = 1, .reusable = true}, SHIFT(1489), - [4051] = {.count = 1, .reusable = false}, SHIFT(1491), - [4053] = {.count = 1, .reusable = true}, SHIFT(1491), - [4055] = {.count = 1, .reusable = true}, SHIFT(1490), - [4057] = {.count = 1, .reusable = true}, SHIFT(1492), - [4059] = {.count = 1, .reusable = false}, SHIFT(1493), - [4061] = {.count = 1, .reusable = true}, SHIFT(1494), - [4063] = {.count = 1, .reusable = true}, SHIFT(1495), - [4065] = {.count = 1, .reusable = false}, SHIFT(1495), - [4067] = {.count = 1, .reusable = true}, SHIFT(1497), - [4069] = {.count = 1, .reusable = false}, SHIFT(1497), - [4071] = {.count = 1, .reusable = true}, SHIFT(1499), - [4073] = {.count = 1, .reusable = true}, SHIFT(1500), - [4075] = {.count = 1, .reusable = false}, SHIFT(1501), - [4077] = {.count = 1, .reusable = true}, SHIFT(1502), - [4079] = {.count = 1, .reusable = true}, SHIFT(1504), - [4081] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [4083] = {.count = 1, .reusable = true}, SHIFT(1505), - [4085] = {.count = 1, .reusable = true}, SHIFT(1506), - [4087] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [4089] = {.count = 1, .reusable = true}, SHIFT(1507), - [4091] = {.count = 1, .reusable = true}, SHIFT(1509), - [4093] = {.count = 1, .reusable = false}, SHIFT(1511), - [4095] = {.count = 1, .reusable = true}, SHIFT(1511), - [4097] = {.count = 1, .reusable = true}, SHIFT(1512), - [4099] = {.count = 1, .reusable = true}, SHIFT(1513), - [4101] = {.count = 1, .reusable = true}, SHIFT(1515), - [4103] = {.count = 1, .reusable = false}, SHIFT(1517), - [4105] = {.count = 1, .reusable = true}, SHIFT(1517), - [4107] = {.count = 1, .reusable = true}, SHIFT(1518), - [4109] = {.count = 1, .reusable = true}, SHIFT(909), - [4111] = {.count = 1, .reusable = true}, SHIFT(939), - [4113] = {.count = 1, .reusable = false}, SHIFT(972), - [4115] = {.count = 1, .reusable = false}, SHIFT(1519), - [4117] = {.count = 1, .reusable = true}, SHIFT(1519), - [4119] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [4121] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [4123] = {.count = 1, .reusable = true}, SHIFT(1522), - [4125] = {.count = 1, .reusable = true}, SHIFT(1525), - [4127] = {.count = 1, .reusable = false}, SHIFT(1527), - [4129] = {.count = 1, .reusable = true}, SHIFT(1527), - [4131] = {.count = 1, .reusable = false}, SHIFT(1529), - [4133] = {.count = 1, .reusable = true}, SHIFT(1529), - [4135] = {.count = 1, .reusable = true}, SHIFT(1528), - [4137] = {.count = 1, .reusable = true}, SHIFT(1530), - [4139] = {.count = 1, .reusable = false}, SHIFT(1531), - [4141] = {.count = 1, .reusable = true}, SHIFT(1531), - [4143] = {.count = 1, .reusable = true}, SHIFT(1532), - [4145] = {.count = 1, .reusable = false}, SHIFT(1534), - [4147] = {.count = 1, .reusable = true}, SHIFT(1534), - [4149] = {.count = 1, .reusable = true}, SHIFT(1535), - [4151] = {.count = 1, .reusable = true}, SHIFT(1536), - [4153] = {.count = 1, .reusable = false}, SHIFT(1539), - [4155] = {.count = 1, .reusable = true}, SHIFT(1539), - [4157] = {.count = 1, .reusable = true}, SHIFT(1538), - [4159] = {.count = 1, .reusable = true}, SHIFT(1540), - [4161] = {.count = 1, .reusable = false}, SHIFT(1541), - [4163] = {.count = 1, .reusable = true}, SHIFT(1541), - [4165] = {.count = 1, .reusable = false}, SHIFT(1543), - [4167] = {.count = 1, .reusable = true}, SHIFT(1543), - [4169] = {.count = 1, .reusable = true}, SHIFT(1542), - [4171] = {.count = 1, .reusable = true}, SHIFT(1545), - [4173] = {.count = 1, .reusable = false}, SHIFT(1547), - [4175] = {.count = 1, .reusable = true}, SHIFT(1547), - [4177] = {.count = 1, .reusable = false}, SHIFT(1549), - [4179] = {.count = 1, .reusable = true}, SHIFT(1549), - [4181] = {.count = 1, .reusable = true}, SHIFT(1548), - [4183] = {.count = 1, .reusable = true}, SHIFT(1550), - [4185] = {.count = 1, .reusable = false}, SHIFT(1551), - [4187] = {.count = 1, .reusable = true}, SHIFT(1551), - [4189] = {.count = 1, .reusable = true}, SHIFT(1552), - [4191] = {.count = 1, .reusable = true}, SHIFT(1553), - [4193] = {.count = 1, .reusable = true}, SHIFT(1554), - [4195] = {.count = 1, .reusable = true}, SHIFT(1555), - [4197] = {.count = 1, .reusable = true}, SHIFT(1556), - [4199] = {.count = 1, .reusable = true}, SHIFT(1557), - [4201] = {.count = 1, .reusable = false}, SHIFT(1559), - [4203] = {.count = 1, .reusable = true}, SHIFT(1559), - [4205] = {.count = 1, .reusable = true}, SHIFT(1560), - [4207] = {.count = 1, .reusable = true}, SHIFT(1561), - [4209] = {.count = 1, .reusable = false}, SHIFT(1563), - [4211] = {.count = 1, .reusable = true}, SHIFT(1563), - [4213] = {.count = 1, .reusable = true}, SHIFT(1195), - [4215] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [4217] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [4219] = {.count = 1, .reusable = true}, SHIFT(1565), - [4221] = {.count = 1, .reusable = true}, SHIFT(1567), - [4223] = {.count = 1, .reusable = true}, SHIFT(1569), - [4225] = {.count = 1, .reusable = false}, SHIFT(1571), - [4227] = {.count = 1, .reusable = true}, SHIFT(1571), - [4229] = {.count = 1, .reusable = true}, SHIFT(1572), - [4231] = {.count = 1, .reusable = true}, SHIFT(1573), - [4233] = {.count = 1, .reusable = false}, SHIFT(1575), - [4235] = {.count = 1, .reusable = true}, SHIFT(1575), - [4237] = {.count = 1, .reusable = true}, SHIFT(1576), - [4239] = {.count = 1, .reusable = true}, SHIFT(1577), - [4241] = {.count = 1, .reusable = false}, SHIFT(1579), - [4243] = {.count = 1, .reusable = true}, SHIFT(1579), - [4245] = {.count = 1, .reusable = true}, SHIFT(1580), - [4247] = {.count = 1, .reusable = false}, SHIFT(1582), - [4249] = {.count = 1, .reusable = true}, SHIFT(1582), - [4251] = {.count = 1, .reusable = true}, SHIFT(1581), - [4253] = {.count = 1, .reusable = true}, SHIFT(1583), - [4255] = {.count = 1, .reusable = false}, SHIFT(1584), - [4257] = {.count = 1, .reusable = true}, SHIFT(1585), - [4259] = {.count = 1, .reusable = true}, SHIFT(1587), - [4261] = {.count = 1, .reusable = false}, SHIFT(1589), - [4263] = {.count = 1, .reusable = true}, SHIFT(1589), - [4265] = {.count = 1, .reusable = true}, SHIFT(1590), - [4267] = {.count = 1, .reusable = true}, SHIFT(1591), - [4269] = {.count = 1, .reusable = true}, SHIFT(1593), - [4271] = {.count = 1, .reusable = true}, SHIFT(1597), - [4273] = {.count = 1, .reusable = true}, SHIFT(1598), - [4275] = {.count = 1, .reusable = false}, SHIFT(1600), - [4277] = {.count = 1, .reusable = true}, SHIFT(1600), - [4279] = {.count = 1, .reusable = true}, SHIFT(1601), - [4281] = {.count = 1, .reusable = true}, SHIFT(1603), - [4283] = {.count = 1, .reusable = false}, SHIFT(1605), - [4285] = {.count = 1, .reusable = true}, SHIFT(1605), - [4287] = {.count = 1, .reusable = false}, SHIFT(1607), - [4289] = {.count = 1, .reusable = true}, SHIFT(1607), - [4291] = {.count = 1, .reusable = true}, SHIFT(1606), - [4293] = {.count = 1, .reusable = true}, SHIFT(1608), - [4295] = {.count = 1, .reusable = false}, SHIFT(1609), - [4297] = {.count = 1, .reusable = true}, SHIFT(1609), - [4299] = {.count = 1, .reusable = true}, SHIFT(1610), - [4301] = {.count = 1, .reusable = true}, SHIFT(1611), - [4303] = {.count = 1, .reusable = false}, SHIFT(1613), - [4305] = {.count = 1, .reusable = true}, SHIFT(1613), - [4307] = {.count = 1, .reusable = true}, SHIFT(1614), - [4309] = {.count = 1, .reusable = true}, SHIFT(1615), - [4311] = {.count = 1, .reusable = true}, SHIFT(1617), - [4313] = {.count = 1, .reusable = true}, SHIFT(1619), - [4315] = {.count = 1, .reusable = true}, SHIFT(1620), - [4317] = {.count = 1, .reusable = true}, SHIFT(1622), - [4319] = {.count = 1, .reusable = false}, SHIFT(1624), - [4321] = {.count = 1, .reusable = true}, SHIFT(1624), - [4323] = {.count = 1, .reusable = true}, SHIFT(1625), - [4325] = {.count = 1, .reusable = true}, SHIFT(1626), - [4327] = {.count = 1, .reusable = true}, SHIFT(1628), - [4329] = {.count = 1, .reusable = true}, SHIFT(1629), - [4331] = {.count = 1, .reusable = true}, SHIFT(1630), - [4333] = {.count = 1, .reusable = false}, SHIFT(1632), - [4335] = {.count = 1, .reusable = true}, SHIFT(1632), - [4337] = {.count = 1, .reusable = true}, SHIFT(1633), - [4339] = {.count = 1, .reusable = true}, SHIFT(1634), - [4341] = {.count = 1, .reusable = true}, SHIFT(1636), + [3195] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [3197] = {.count = 1, .reusable = true}, SHIFT(1215), + [3199] = {.count = 1, .reusable = true}, SHIFT(1218), + [3201] = {.count = 1, .reusable = false}, SHIFT(1219), + [3203] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [3205] = {.count = 1, .reusable = false}, SHIFT(1224), + [3207] = {.count = 1, .reusable = true}, SHIFT(1225), + [3209] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [3211] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(688), + [3216] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(690), + [3221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(691), + [3224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(694), + [3227] = {.count = 1, .reusable = true}, SHIFT(1227), + [3229] = {.count = 1, .reusable = true}, SHIFT(1228), + [3231] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [3233] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [3235] = {.count = 1, .reusable = true}, SHIFT(1231), + [3237] = {.count = 1, .reusable = true}, SHIFT(1232), + [3239] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [3241] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [3243] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [3245] = {.count = 1, .reusable = true}, SHIFT(1233), + [3247] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [3249] = {.count = 1, .reusable = false}, SHIFT(1235), + [3251] = {.count = 1, .reusable = true}, SHIFT(1235), + [3253] = {.count = 1, .reusable = true}, SHIFT(1234), + [3255] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [3257] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [3259] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(713), + [3262] = {.count = 1, .reusable = true}, SHIFT(1236), + [3264] = {.count = 1, .reusable = true}, SHIFT(1237), + [3266] = {.count = 1, .reusable = false}, SHIFT(1239), + [3268] = {.count = 1, .reusable = true}, SHIFT(1239), + [3270] = {.count = 1, .reusable = true}, SHIFT(1238), + [3272] = {.count = 1, .reusable = true}, SHIFT(1240), + [3274] = {.count = 1, .reusable = true}, SHIFT(1241), + [3276] = {.count = 1, .reusable = false}, SHIFT(1243), + [3278] = {.count = 1, .reusable = true}, SHIFT(1243), + [3280] = {.count = 1, .reusable = true}, SHIFT(1244), + [3282] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), + [3284] = {.count = 1, .reusable = true}, SHIFT(203), + [3286] = {.count = 1, .reusable = false}, SHIFT(1245), + [3288] = {.count = 1, .reusable = true}, SHIFT(1245), + [3290] = {.count = 1, .reusable = true}, SHIFT(1247), + [3292] = {.count = 1, .reusable = true}, SHIFT(1249), + [3294] = {.count = 1, .reusable = false}, SHIFT(1249), + [3296] = {.count = 1, .reusable = true}, SHIFT(1252), + [3298] = {.count = 1, .reusable = false}, SHIFT(1255), + [3300] = {.count = 1, .reusable = true}, SHIFT(1255), + [3302] = {.count = 1, .reusable = true}, SHIFT(1254), + [3304] = {.count = 1, .reusable = true}, SHIFT(1256), + [3306] = {.count = 1, .reusable = true}, SHIFT(1257), + [3308] = {.count = 1, .reusable = false}, SHIFT(1257), + [3310] = {.count = 1, .reusable = false}, SHIFT(1259), + [3312] = {.count = 1, .reusable = true}, SHIFT(1260), + [3314] = {.count = 1, .reusable = true}, SHIFT(1263), + [3316] = {.count = 1, .reusable = true}, SHIFT(1265), + [3318] = {.count = 1, .reusable = false}, SHIFT(1266), + [3320] = {.count = 1, .reusable = true}, SHIFT(1267), + [3322] = {.count = 1, .reusable = true}, SHIFT(1269), + [3324] = {.count = 1, .reusable = true}, SHIFT(1270), + [3326] = {.count = 1, .reusable = false}, SHIFT(1271), + [3328] = {.count = 1, .reusable = true}, SHIFT(1272), + [3330] = {.count = 1, .reusable = true}, SHIFT(1273), + [3332] = {.count = 1, .reusable = true}, SHIFT(1274), + [3334] = {.count = 1, .reusable = false}, SHIFT(1277), + [3336] = {.count = 1, .reusable = true}, SHIFT(1277), + [3338] = {.count = 1, .reusable = true}, SHIFT(1276), + [3340] = {.count = 1, .reusable = true}, SHIFT(1278), + [3342] = {.count = 1, .reusable = false}, SHIFT(1279), + [3344] = {.count = 1, .reusable = true}, SHIFT(1279), + [3346] = {.count = 1, .reusable = true}, SHIFT(1280), + [3348] = {.count = 1, .reusable = true}, SHIFT(1281), + [3350] = {.count = 1, .reusable = false}, SHIFT(1284), + [3352] = {.count = 1, .reusable = true}, SHIFT(1284), + [3354] = {.count = 1, .reusable = true}, SHIFT(1283), + [3356] = {.count = 1, .reusable = true}, SHIFT(1286), + [3358] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [3360] = {.count = 1, .reusable = true}, SHIFT(1287), + [3362] = {.count = 1, .reusable = false}, SHIFT(231), + [3364] = {.count = 1, .reusable = false}, SHIFT(1288), + [3366] = {.count = 1, .reusable = true}, SHIFT(1288), + [3368] = {.count = 1, .reusable = true}, SHIFT(1289), + [3370] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [3372] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [3374] = {.count = 1, .reusable = false}, SHIFT(1292), + [3376] = {.count = 1, .reusable = true}, SHIFT(1292), + [3378] = {.count = 1, .reusable = true}, SHIFT(1291), + [3380] = {.count = 1, .reusable = false}, SHIFT(1305), + [3382] = {.count = 1, .reusable = true}, SHIFT(1305), + [3384] = {.count = 1, .reusable = true}, SHIFT(1306), + [3386] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), + [3388] = {.count = 1, .reusable = false}, SHIFT(1309), + [3390] = {.count = 1, .reusable = true}, SHIFT(1309), + [3392] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3394] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(820), + [3397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(811), + [3400] = {.count = 1, .reusable = false}, SHIFT(1312), + [3402] = {.count = 1, .reusable = true}, SHIFT(1312), + [3404] = {.count = 1, .reusable = true}, SHIFT(1310), + [3406] = {.count = 1, .reusable = true}, SHIFT(1313), + [3408] = {.count = 1, .reusable = false}, SHIFT(1316), + [3410] = {.count = 1, .reusable = true}, SHIFT(1316), + [3412] = {.count = 1, .reusable = false}, SHIFT(1317), + [3414] = {.count = 1, .reusable = true}, SHIFT(1317), + [3416] = {.count = 1, .reusable = false}, SHIFT(1318), + [3418] = {.count = 1, .reusable = true}, SHIFT(1318), + [3420] = {.count = 1, .reusable = false}, SHIFT(1319), + [3422] = {.count = 1, .reusable = true}, SHIFT(1319), + [3424] = {.count = 1, .reusable = false}, SHIFT(1320), + [3426] = {.count = 1, .reusable = true}, SHIFT(1320), + [3428] = {.count = 1, .reusable = false}, SHIFT(1321), + [3430] = {.count = 1, .reusable = true}, SHIFT(1321), + [3432] = {.count = 1, .reusable = false}, SHIFT(1322), + [3434] = {.count = 1, .reusable = true}, SHIFT(1322), + [3436] = {.count = 1, .reusable = false}, SHIFT(1323), + [3438] = {.count = 1, .reusable = true}, SHIFT(1323), + [3440] = {.count = 1, .reusable = false}, SHIFT(1324), + [3442] = {.count = 1, .reusable = true}, SHIFT(1324), + [3444] = {.count = 1, .reusable = false}, SHIFT(1325), + [3446] = {.count = 1, .reusable = true}, SHIFT(1325), + [3448] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3450] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [3452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(828), + [3455] = {.count = 1, .reusable = false}, SHIFT(1327), + [3457] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(113), + [3461] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [3464] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [3466] = {.count = 1, .reusable = true}, SHIFT(1330), + [3468] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), + [3470] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), + [3472] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [3474] = {.count = 1, .reusable = true}, SHIFT(1331), + [3476] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3478] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3480] = {.count = 1, .reusable = true}, SHIFT(1333), + [3482] = {.count = 1, .reusable = false}, SHIFT(1335), + [3484] = {.count = 1, .reusable = true}, SHIFT(1335), + [3486] = {.count = 1, .reusable = false}, SHIFT(1338), + [3488] = {.count = 1, .reusable = true}, SHIFT(1338), + [3490] = {.count = 1, .reusable = true}, SHIFT(1337), + [3492] = {.count = 1, .reusable = true}, SHIFT(1339), + [3494] = {.count = 1, .reusable = false}, SHIFT(1340), + [3496] = {.count = 1, .reusable = true}, SHIFT(1340), + [3498] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [3500] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [3502] = {.count = 1, .reusable = true}, SHIFT(1342), + [3504] = {.count = 1, .reusable = true}, SHIFT(1344), + [3506] = {.count = 1, .reusable = false}, SHIFT(1348), + [3508] = {.count = 1, .reusable = true}, SHIFT(1348), + [3510] = {.count = 1, .reusable = true}, SHIFT(1347), + [3512] = {.count = 1, .reusable = true}, SHIFT(1349), + [3514] = {.count = 1, .reusable = true}, SHIFT(1351), + [3516] = {.count = 1, .reusable = true}, SHIFT(1353), + [3518] = {.count = 1, .reusable = false}, SHIFT(1354), + [3520] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [3522] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [3524] = {.count = 1, .reusable = false}, SHIFT(305), + [3526] = {.count = 1, .reusable = false}, SHIFT(1355), + [3528] = {.count = 1, .reusable = true}, SHIFT(1355), + [3530] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3532] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), + [3534] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [3536] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(899), + [3539] = {.count = 1, .reusable = false}, SHIFT(909), + [3541] = {.count = 1, .reusable = true}, SHIFT(909), + [3543] = {.count = 1, .reusable = false}, SHIFT(912), + [3545] = {.count = 1, .reusable = false}, SHIFT(913), + [3547] = {.count = 1, .reusable = true}, SHIFT(914), + [3549] = {.count = 1, .reusable = true}, SHIFT(908), + [3551] = {.count = 1, .reusable = true}, SHIFT(910), + [3553] = {.count = 1, .reusable = false}, SHIFT(916), + [3555] = {.count = 1, .reusable = true}, SHIFT(1356), + [3557] = {.count = 1, .reusable = true}, SHIFT(1357), + [3559] = {.count = 1, .reusable = false}, SHIFT(343), + [3561] = {.count = 1, .reusable = false}, SHIFT(341), + [3563] = {.count = 1, .reusable = false}, SHIFT(1358), + [3565] = {.count = 1, .reusable = true}, SHIFT(1358), + [3567] = {.count = 1, .reusable = false}, SHIFT(941), + [3569] = {.count = 1, .reusable = true}, SHIFT(941), + [3571] = {.count = 1, .reusable = false}, SHIFT(944), + [3573] = {.count = 1, .reusable = false}, SHIFT(945), + [3575] = {.count = 1, .reusable = true}, SHIFT(946), + [3577] = {.count = 1, .reusable = true}, SHIFT(940), + [3579] = {.count = 1, .reusable = true}, SHIFT(942), + [3581] = {.count = 1, .reusable = false}, SHIFT(948), + [3583] = {.count = 1, .reusable = true}, SHIFT(1359), + [3585] = {.count = 1, .reusable = true}, SHIFT(1360), + [3587] = {.count = 1, .reusable = false}, SHIFT(363), + [3589] = {.count = 1, .reusable = false}, SHIFT(361), + [3591] = {.count = 1, .reusable = false}, SHIFT(1361), + [3593] = {.count = 1, .reusable = true}, SHIFT(1361), + [3595] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [3597] = {.count = 1, .reusable = true}, SHIFT(1362), + [3599] = {.count = 1, .reusable = false}, SHIFT(1364), + [3601] = {.count = 1, .reusable = true}, SHIFT(1364), + [3603] = {.count = 1, .reusable = false}, SHIFT(1366), + [3605] = {.count = 1, .reusable = true}, SHIFT(1366), + [3607] = {.count = 1, .reusable = true}, SHIFT(1365), + [3609] = {.count = 1, .reusable = true}, SHIFT(1367), + [3611] = {.count = 1, .reusable = false}, SHIFT(1368), + [3613] = {.count = 1, .reusable = true}, SHIFT(1368), + [3615] = {.count = 1, .reusable = false}, SHIFT(1369), + [3617] = {.count = 1, .reusable = true}, SHIFT(1369), + [3619] = {.count = 1, .reusable = false}, SHIFT(1371), + [3621] = {.count = 1, .reusable = true}, SHIFT(1374), + [3623] = {.count = 1, .reusable = false}, SHIFT(1375), + [3625] = {.count = 1, .reusable = false}, SHIFT(1378), + [3627] = {.count = 1, .reusable = true}, SHIFT(1379), + [3629] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(979), + [3632] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(980), + [3635] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(981), + [3638] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(982), + [3641] = {.count = 1, .reusable = true}, SHIFT(1381), + [3643] = {.count = 1, .reusable = false}, SHIFT(1384), + [3645] = {.count = 1, .reusable = true}, SHIFT(1384), + [3647] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [3649] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [3651] = {.count = 1, .reusable = true}, SHIFT(1387), + [3653] = {.count = 1, .reusable = true}, SHIFT(1388), + [3655] = {.count = 1, .reusable = false}, SHIFT(1389), + [3657] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3659] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3661] = {.count = 1, .reusable = true}, SHIFT(1390), + [3663] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3665] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3667] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [3669] = {.count = 1, .reusable = true}, SHIFT(1392), + [3671] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [3673] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [3675] = {.count = 1, .reusable = false}, SHIFT(1394), + [3677] = {.count = 1, .reusable = true}, SHIFT(1394), + [3679] = {.count = 1, .reusable = true}, SHIFT(1393), + [3681] = {.count = 1, .reusable = true}, SHIFT(1395), + [3683] = {.count = 1, .reusable = false}, SHIFT(1396), + [3685] = {.count = 1, .reusable = true}, SHIFT(1396), + [3687] = {.count = 1, .reusable = true}, SHIFT(1397), + [3689] = {.count = 1, .reusable = false}, SHIFT(1399), + [3691] = {.count = 1, .reusable = true}, SHIFT(1399), + [3693] = {.count = 1, .reusable = true}, SHIFT(1400), + [3695] = {.count = 1, .reusable = false}, SHIFT(1401), + [3697] = {.count = 1, .reusable = true}, SHIFT(1401), + [3699] = {.count = 1, .reusable = true}, SHIFT(1403), + [3701] = {.count = 1, .reusable = true}, SHIFT(1404), + [3703] = {.count = 1, .reusable = false}, SHIFT(1407), + [3705] = {.count = 1, .reusable = true}, SHIFT(1407), + [3707] = {.count = 1, .reusable = true}, SHIFT(1406), + [3709] = {.count = 1, .reusable = true}, SHIFT(1408), + [3711] = {.count = 1, .reusable = false}, SHIFT(1409), + [3713] = {.count = 1, .reusable = true}, SHIFT(1409), + [3715] = {.count = 1, .reusable = true}, SHIFT(1410), + [3717] = {.count = 1, .reusable = true}, SHIFT(1411), + [3719] = {.count = 1, .reusable = false}, SHIFT(1414), + [3721] = {.count = 1, .reusable = true}, SHIFT(1414), + [3723] = {.count = 1, .reusable = true}, SHIFT(1413), + [3725] = {.count = 1, .reusable = true}, SHIFT(1416), + [3727] = {.count = 1, .reusable = true}, SHIFT(1417), + [3729] = {.count = 1, .reusable = true}, SHIFT(1418), + [3731] = {.count = 1, .reusable = true}, SHIFT(1420), + [3733] = {.count = 1, .reusable = false}, SHIFT(1422), + [3735] = {.count = 1, .reusable = true}, SHIFT(1422), + [3737] = {.count = 1, .reusable = true}, SHIFT(1423), + [3739] = {.count = 1, .reusable = false}, SHIFT(1424), + [3741] = {.count = 1, .reusable = false}, SHIFT(1426), + [3743] = {.count = 1, .reusable = true}, SHIFT(1426), + [3745] = {.count = 1, .reusable = true}, SHIFT(1425), + [3747] = {.count = 1, .reusable = true}, SHIFT(1427), + [3749] = {.count = 1, .reusable = true}, SHIFT(500), + [3751] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3753] = {.count = 1, .reusable = true}, SHIFT(1429), + [3755] = {.count = 1, .reusable = false}, SHIFT(1294), + [3757] = {.count = 1, .reusable = false}, SHIFT(1302), + [3759] = {.count = 1, .reusable = false}, SHIFT(1298), + [3761] = {.count = 1, .reusable = false}, SHIFT(1432), + [3763] = {.count = 1, .reusable = true}, SHIFT(1432), + [3765] = {.count = 1, .reusable = false}, SHIFT(1433), + [3767] = {.count = 1, .reusable = true}, SHIFT(1433), + [3769] = {.count = 1, .reusable = false}, SHIFT(1434), + [3771] = {.count = 1, .reusable = true}, SHIFT(1434), + [3773] = {.count = 1, .reusable = false}, SHIFT(1435), + [3775] = {.count = 1, .reusable = true}, SHIFT(1435), + [3777] = {.count = 1, .reusable = false}, SHIFT(1436), + [3779] = {.count = 1, .reusable = true}, SHIFT(1436), + [3781] = {.count = 1, .reusable = false}, SHIFT(1437), + [3783] = {.count = 1, .reusable = true}, SHIFT(1437), + [3785] = {.count = 1, .reusable = false}, SHIFT(1438), + [3787] = {.count = 1, .reusable = true}, SHIFT(1438), + [3789] = {.count = 1, .reusable = false}, SHIFT(1439), + [3791] = {.count = 1, .reusable = true}, SHIFT(1439), + [3793] = {.count = 1, .reusable = false}, SHIFT(1440), + [3795] = {.count = 1, .reusable = true}, SHIFT(1440), + [3797] = {.count = 1, .reusable = false}, SHIFT(1441), + [3799] = {.count = 1, .reusable = true}, SHIFT(1441), + [3801] = {.count = 1, .reusable = true}, SHIFT(1442), + [3803] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [3805] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [3807] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [3809] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3811] = {.count = 1, .reusable = true}, SHIFT(1443), + [3813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1444), + [3816] = {.count = 1, .reusable = true}, SHIFT(1445), + [3818] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3820] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [3822] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3824] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3826] = {.count = 1, .reusable = true}, SHIFT(1449), + [3828] = {.count = 1, .reusable = true}, SHIFT(1451), + [3830] = {.count = 1, .reusable = false}, SHIFT(1453), + [3832] = {.count = 1, .reusable = true}, SHIFT(1453), + [3834] = {.count = 1, .reusable = true}, SHIFT(1454), + [3836] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [3838] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [3840] = {.count = 1, .reusable = false}, SHIFT(1456), + [3842] = {.count = 1, .reusable = true}, SHIFT(1456), + [3844] = {.count = 1, .reusable = true}, SHIFT(1455), + [3846] = {.count = 1, .reusable = false}, SHIFT(1460), + [3848] = {.count = 1, .reusable = false}, SHIFT(1457), + [3850] = {.count = 1, .reusable = false}, SHIFT(1458), + [3852] = {.count = 1, .reusable = false}, SHIFT(1459), + [3854] = {.count = 1, .reusable = false}, SHIFT(1462), + [3856] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), + [3859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), + [3862] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(273), + [3867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), + [3870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), + [3873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), + [3876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [3879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), + [3882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), + [3885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9), + [3888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), + [3891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), + [3894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [3897] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3899] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [3902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(276), + [3905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), + [3908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [3911] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), + [3914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), + [3917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1145), + [3920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [3923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [3926] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [3929] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [3932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [3935] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), + [3938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [3941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [3944] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [3947] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [3950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), + [3953] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [3956] = {.count = 1, .reusable = false}, SHIFT(1464), + [3958] = {.count = 1, .reusable = true}, SHIFT(1464), + [3960] = {.count = 1, .reusable = true}, SHIFT(1463), + [3962] = {.count = 1, .reusable = true}, SHIFT(1465), + [3964] = {.count = 1, .reusable = false}, SHIFT(1466), + [3966] = {.count = 1, .reusable = true}, SHIFT(1466), + [3968] = {.count = 1, .reusable = false}, SHIFT(1469), + [3970] = {.count = 1, .reusable = true}, SHIFT(1469), + [3972] = {.count = 1, .reusable = true}, SHIFT(1468), + [3974] = {.count = 1, .reusable = true}, SHIFT(593), + [3976] = {.count = 1, .reusable = false}, SHIFT(614), + [3978] = {.count = 1, .reusable = false}, SHIFT(1470), + [3980] = {.count = 1, .reusable = true}, SHIFT(1470), + [3982] = {.count = 1, .reusable = false}, SHIFT(640), + [3984] = {.count = 1, .reusable = false}, SHIFT(1471), + [3986] = {.count = 1, .reusable = true}, SHIFT(1471), + [3988] = {.count = 1, .reusable = true}, SHIFT(1472), + [3990] = {.count = 1, .reusable = true}, SHIFT(1474), + [3992] = {.count = 1, .reusable = false}, SHIFT(1476), + [3994] = {.count = 1, .reusable = true}, SHIFT(1476), + [3996] = {.count = 1, .reusable = true}, SHIFT(1477), + [3998] = {.count = 1, .reusable = true}, SHIFT(1478), + [4000] = {.count = 1, .reusable = false}, SHIFT(1479), + [4002] = {.count = 1, .reusable = true}, SHIFT(1479), + [4004] = {.count = 1, .reusable = false}, SHIFT(1481), + [4006] = {.count = 1, .reusable = true}, SHIFT(1481), + [4008] = {.count = 1, .reusable = true}, SHIFT(1483), + [4010] = {.count = 1, .reusable = true}, SHIFT(1484), + [4012] = {.count = 1, .reusable = false}, SHIFT(1485), + [4014] = {.count = 1, .reusable = true}, SHIFT(1486), + [4016] = {.count = 1, .reusable = true}, SHIFT(1488), + [4018] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [4020] = {.count = 1, .reusable = true}, SHIFT(1489), + [4022] = {.count = 1, .reusable = true}, SHIFT(1490), + [4024] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [4026] = {.count = 1, .reusable = true}, SHIFT(1491), + [4028] = {.count = 1, .reusable = false}, SHIFT(1493), + [4030] = {.count = 1, .reusable = true}, SHIFT(1493), + [4032] = {.count = 1, .reusable = true}, SHIFT(1494), + [4034] = {.count = 1, .reusable = true}, SHIFT(1495), + [4036] = {.count = 1, .reusable = true}, SHIFT(1497), + [4038] = {.count = 1, .reusable = true}, SHIFT(1498), + [4040] = {.count = 1, .reusable = true}, SHIFT(1500), + [4042] = {.count = 1, .reusable = false}, SHIFT(1502), + [4044] = {.count = 1, .reusable = true}, SHIFT(1502), + [4046] = {.count = 1, .reusable = true}, SHIFT(1503), + [4048] = {.count = 1, .reusable = false}, SHIFT(1504), + [4050] = {.count = 1, .reusable = false}, SHIFT(1506), + [4052] = {.count = 1, .reusable = true}, SHIFT(1506), + [4054] = {.count = 1, .reusable = true}, SHIFT(1505), + [4056] = {.count = 1, .reusable = true}, SHIFT(1507), + [4058] = {.count = 1, .reusable = true}, SHIFT(1509), + [4060] = {.count = 1, .reusable = false}, SHIFT(1511), + [4062] = {.count = 1, .reusable = true}, SHIFT(1511), + [4064] = {.count = 1, .reusable = false}, SHIFT(1513), + [4066] = {.count = 1, .reusable = true}, SHIFT(1513), + [4068] = {.count = 1, .reusable = true}, SHIFT(1512), + [4070] = {.count = 1, .reusable = true}, SHIFT(1514), + [4072] = {.count = 1, .reusable = false}, SHIFT(1515), + [4074] = {.count = 1, .reusable = true}, SHIFT(1515), + [4076] = {.count = 1, .reusable = false}, SHIFT(1296), + [4078] = {.count = 1, .reusable = true}, SHIFT(1296), + [4080] = {.count = 1, .reusable = false}, SHIFT(1299), + [4082] = {.count = 1, .reusable = false}, SHIFT(1300), + [4084] = {.count = 1, .reusable = true}, SHIFT(1301), + [4086] = {.count = 1, .reusable = true}, SHIFT(1295), + [4088] = {.count = 1, .reusable = true}, SHIFT(1297), + [4090] = {.count = 1, .reusable = false}, SHIFT(1303), + [4092] = {.count = 1, .reusable = true}, SHIFT(1516), + [4094] = {.count = 1, .reusable = true}, SHIFT(1517), + [4096] = {.count = 1, .reusable = false}, SHIFT(815), + [4098] = {.count = 1, .reusable = false}, SHIFT(812), + [4100] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [4102] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [4104] = {.count = 1, .reusable = false}, SHIFT(1518), + [4106] = {.count = 1, .reusable = true}, SHIFT(1518), + [4108] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [4110] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [4112] = {.count = 1, .reusable = true}, SHIFT(1520), + [4114] = {.count = 1, .reusable = true}, SHIFT(1521), + [4116] = {.count = 1, .reusable = false}, SHIFT(1523), + [4118] = {.count = 1, .reusable = true}, SHIFT(1523), + [4120] = {.count = 1, .reusable = false}, SHIFT(1525), + [4122] = {.count = 1, .reusable = true}, SHIFT(1525), + [4124] = {.count = 1, .reusable = true}, SHIFT(1524), + [4126] = {.count = 1, .reusable = true}, SHIFT(1526), + [4128] = {.count = 1, .reusable = true}, SHIFT(1528), + [4130] = {.count = 1, .reusable = true}, SHIFT(1530), + [4132] = {.count = 1, .reusable = false}, SHIFT(1531), + [4134] = {.count = 1, .reusable = true}, SHIFT(1532), + [4136] = {.count = 1, .reusable = false}, SHIFT(1534), + [4138] = {.count = 1, .reusable = true}, SHIFT(1534), + [4140] = {.count = 1, .reusable = true}, SHIFT(1535), + [4142] = {.count = 1, .reusable = false}, SHIFT(1536), + [4144] = {.count = 1, .reusable = false}, SHIFT(1538), + [4146] = {.count = 1, .reusable = true}, SHIFT(1538), + [4148] = {.count = 1, .reusable = true}, SHIFT(1537), + [4150] = {.count = 1, .reusable = true}, SHIFT(1539), + [4152] = {.count = 1, .reusable = true}, SHIFT(917), + [4154] = {.count = 1, .reusable = true}, SHIFT(949), + [4156] = {.count = 1, .reusable = true}, SHIFT(1540), + [4158] = {.count = 1, .reusable = true}, SHIFT(1541), + [4160] = {.count = 1, .reusable = false}, SHIFT(1543), + [4162] = {.count = 1, .reusable = true}, SHIFT(1543), + [4164] = {.count = 1, .reusable = true}, SHIFT(1544), + [4166] = {.count = 1, .reusable = true}, SHIFT(1545), + [4168] = {.count = 1, .reusable = true}, SHIFT(1546), + [4170] = {.count = 1, .reusable = true}, SHIFT(1547), + [4172] = {.count = 1, .reusable = true}, SHIFT(1548), + [4174] = {.count = 1, .reusable = false}, SHIFT(1550), + [4176] = {.count = 1, .reusable = true}, SHIFT(1550), + [4178] = {.count = 1, .reusable = true}, SHIFT(1551), + [4180] = {.count = 1, .reusable = true}, SHIFT(1553), + [4182] = {.count = 1, .reusable = false}, SHIFT(1555), + [4184] = {.count = 1, .reusable = true}, SHIFT(1555), + [4186] = {.count = 1, .reusable = false}, SHIFT(1557), + [4188] = {.count = 1, .reusable = true}, SHIFT(1557), + [4190] = {.count = 1, .reusable = true}, SHIFT(1556), + [4192] = {.count = 1, .reusable = true}, SHIFT(1558), + [4194] = {.count = 1, .reusable = false}, SHIFT(1559), + [4196] = {.count = 1, .reusable = true}, SHIFT(1559), + [4198] = {.count = 1, .reusable = true}, SHIFT(1561), + [4200] = {.count = 1, .reusable = true}, SHIFT(1563), + [4202] = {.count = 1, .reusable = false}, SHIFT(1565), + [4204] = {.count = 1, .reusable = true}, SHIFT(1565), + [4206] = {.count = 1, .reusable = true}, SHIFT(1566), + [4208] = {.count = 1, .reusable = false}, SHIFT(1088), + [4210] = {.count = 1, .reusable = false}, SHIFT(1567), + [4212] = {.count = 1, .reusable = true}, SHIFT(1567), + [4214] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [4216] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [4218] = {.count = 1, .reusable = true}, SHIFT(1569), + [4220] = {.count = 1, .reusable = false}, SHIFT(1572), + [4222] = {.count = 1, .reusable = true}, SHIFT(1572), + [4224] = {.count = 1, .reusable = true}, SHIFT(1571), + [4226] = {.count = 1, .reusable = true}, SHIFT(1573), + [4228] = {.count = 1, .reusable = false}, SHIFT(1574), + [4230] = {.count = 1, .reusable = true}, SHIFT(1574), + [4232] = {.count = 1, .reusable = false}, SHIFT(1577), + [4234] = {.count = 1, .reusable = true}, SHIFT(1577), + [4236] = {.count = 1, .reusable = true}, SHIFT(1576), + [4238] = {.count = 1, .reusable = true}, SHIFT(1578), + [4240] = {.count = 1, .reusable = false}, SHIFT(1580), + [4242] = {.count = 1, .reusable = true}, SHIFT(1580), + [4244] = {.count = 1, .reusable = false}, SHIFT(1582), + [4246] = {.count = 1, .reusable = true}, SHIFT(1582), + [4248] = {.count = 1, .reusable = true}, SHIFT(1581), + [4250] = {.count = 1, .reusable = true}, SHIFT(1583), + [4252] = {.count = 1, .reusable = false}, SHIFT(1584), + [4254] = {.count = 1, .reusable = true}, SHIFT(1584), + [4256] = {.count = 1, .reusable = true}, SHIFT(1585), + [4258] = {.count = 1, .reusable = true}, SHIFT(1587), + [4260] = {.count = 1, .reusable = true}, SHIFT(1590), + [4262] = {.count = 1, .reusable = true}, SHIFT(1592), + [4264] = {.count = 1, .reusable = false}, SHIFT(1594), + [4266] = {.count = 1, .reusable = true}, SHIFT(1594), + [4268] = {.count = 1, .reusable = true}, SHIFT(1595), + [4270] = {.count = 1, .reusable = true}, SHIFT(1597), + [4272] = {.count = 1, .reusable = true}, SHIFT(1598), + [4274] = {.count = 1, .reusable = false}, SHIFT(1600), + [4276] = {.count = 1, .reusable = true}, SHIFT(1600), + [4278] = {.count = 1, .reusable = true}, SHIFT(1304), + [4280] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [4282] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [4284] = {.count = 1, .reusable = true}, SHIFT(1601), + [4286] = {.count = 1, .reusable = true}, SHIFT(1602), + [4288] = {.count = 1, .reusable = false}, SHIFT(1604), + [4290] = {.count = 1, .reusable = true}, SHIFT(1604), + [4292] = {.count = 1, .reusable = true}, SHIFT(1605), + [4294] = {.count = 1, .reusable = false}, SHIFT(1606), + [4296] = {.count = 1, .reusable = false}, SHIFT(1608), + [4298] = {.count = 1, .reusable = true}, SHIFT(1608), + [4300] = {.count = 1, .reusable = true}, SHIFT(1607), + [4302] = {.count = 1, .reusable = true}, SHIFT(1609), + [4304] = {.count = 1, .reusable = true}, SHIFT(1610), + [4306] = {.count = 1, .reusable = true}, SHIFT(1612), + [4308] = {.count = 1, .reusable = false}, SHIFT(1614), + [4310] = {.count = 1, .reusable = true}, SHIFT(1614), + [4312] = {.count = 1, .reusable = true}, SHIFT(1615), + [4314] = {.count = 1, .reusable = true}, SHIFT(1616), + [4316] = {.count = 1, .reusable = true}, SHIFT(1617), + [4318] = {.count = 1, .reusable = true}, SHIFT(1619), + [4320] = {.count = 1, .reusable = true}, SHIFT(1620), + [4322] = {.count = 1, .reusable = false}, SHIFT(1622), + [4324] = {.count = 1, .reusable = true}, SHIFT(1622), + [4326] = {.count = 1, .reusable = true}, SHIFT(1624), + [4328] = {.count = 1, .reusable = true}, SHIFT(1626), + [4330] = {.count = 1, .reusable = false}, SHIFT(1628), + [4332] = {.count = 1, .reusable = true}, SHIFT(1628), + [4334] = {.count = 1, .reusable = false}, SHIFT(1630), + [4336] = {.count = 1, .reusable = true}, SHIFT(1630), + [4338] = {.count = 1, .reusable = true}, SHIFT(1629), + [4340] = {.count = 1, .reusable = true}, SHIFT(1631), + [4342] = {.count = 1, .reusable = false}, SHIFT(1632), + [4344] = {.count = 1, .reusable = true}, SHIFT(1632), + [4346] = {.count = 1, .reusable = true}, SHIFT(1633), + [4348] = {.count = 1, .reusable = true}, SHIFT(1634), + [4350] = {.count = 1, .reusable = false}, SHIFT(1636), + [4352] = {.count = 1, .reusable = true}, SHIFT(1636), + [4354] = {.count = 1, .reusable = true}, SHIFT(1638), + [4356] = {.count = 1, .reusable = true}, SHIFT(1640), + [4358] = {.count = 1, .reusable = true}, SHIFT(1641), + [4360] = {.count = 1, .reusable = true}, SHIFT(1643), + [4362] = {.count = 1, .reusable = false}, SHIFT(1645), + [4364] = {.count = 1, .reusable = true}, SHIFT(1645), + [4366] = {.count = 1, .reusable = true}, SHIFT(1646), + [4368] = {.count = 1, .reusable = true}, SHIFT(1647), + [4370] = {.count = 1, .reusable = true}, SHIFT(1649), + [4372] = {.count = 1, .reusable = true}, SHIFT(1650), + [4374] = {.count = 1, .reusable = true}, SHIFT(1651), + [4376] = {.count = 1, .reusable = false}, SHIFT(1653), + [4378] = {.count = 1, .reusable = true}, SHIFT(1653), + [4380] = {.count = 1, .reusable = true}, SHIFT(1654), + [4382] = {.count = 1, .reusable = true}, SHIFT(1655), + [4384] = {.count = 1, .reusable = true}, SHIFT(1657), }; #ifdef _WIN32